mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-03 06:22:35 +08:00
37 lines
894 B
Vue
37 lines
894 B
Vue
<template>
|
|
<v-snackbar v-model="enabled" app :timeout="timeout" :color="color" top @input="onClose">
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<div v-for="(message, index) in messages" :key="index" class="pb-1" v-html="message" />
|
|
</v-snackbar>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, namespace, Vue } from 'nuxt-property-decorator';
|
|
|
|
const snackbar = namespace('snackbar');
|
|
@Component
|
|
export default class HangarSnackbar extends Vue {
|
|
@snackbar.State
|
|
timeout!: number;
|
|
|
|
get enabled() {
|
|
return this.$store.state.snackbar.enabled;
|
|
}
|
|
|
|
set enabled(value) {
|
|
this.$store.commit('snackbar/SHOW_SNACKBAR', value);
|
|
}
|
|
|
|
@snackbar.State
|
|
messages!: string[];
|
|
|
|
@snackbar.State
|
|
color!: string;
|
|
|
|
@snackbar.Mutation('CLEAR_MESSAGES')
|
|
onClose!: () => void;
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|