parent
5506f91c1d
commit
4c4023e32a
@ -0,0 +1,42 @@ |
||||
<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> |
||||
Loading…
Reference in new issue