wg-gen-web/ui/src/components/Notification.vue

26 lines
503 B
Vue

<template>
<v-snackbar
v-model="notification.show"
:right="true"
:top="true"
:color="notification.color"
>
{{ notification.text }}
<v-btn
dark
text
@click="notification.show = false"
>
Close
</v-btn>
</v-snackbar>
</template>
<script>
export default {
name: 'Notification',
props: ['notification'],
data: () => ({
}),
};
</script>