You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
912 B
42 lines
912 B
<template>
|
|
<div>
|
|
<span v-html="message"></span>
|
|
</div>
|
|
<!-- <v-snackbar-->
|
|
<!-- v-model="show"-->
|
|
<!-- :color="color"-->
|
|
<!-- :multi-line="true"-->
|
|
<!-- :timeout="timeout"-->
|
|
<!-- right-->
|
|
<!-- top-->
|
|
<!-- >-->
|
|
<!-- {{ text }}-->
|
|
<!-- <template v-if="subText">-->
|
|
<!-- <p>{{ subText }}</p>-->
|
|
<!-- </template>-->
|
|
<!-- <v-btn-->
|
|
<!-- dark-->
|
|
<!-- text-->
|
|
<!-- @click.native="close"-->
|
|
<!-- >-->
|
|
<!-- {{ $t('Close') }}-->
|
|
<!-- </v-btn>-->
|
|
<!-- </v-snackbar>-->
|
|
</template>
|
|
|
|
<script>
|
|
import { mapFields } from 'vuex-map-fields';
|
|
export default {
|
|
props: {
|
|
message: String,
|
|
},
|
|
/*computed: {
|
|
...mapFields('notifications', ['color', 'show', 'subText', 'text', 'timeout'])
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.show = false;
|
|
}
|
|
}*/
|
|
};
|
|
</script> |