mirror of https://github.com/Requarks/wiki.git
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.
21 lines
627 B
21 lines
627 B
<template lang="pug">
|
|
transition(name='alert', enter-active-class="animated zoomIn", leave-active-class="animated fadeOutRight")
|
|
.alert(v-if='shown', v-bind:class='style')
|
|
.alert-icon: i(v-bind:class='icon')
|
|
.alert-msg {{ msg }}
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'alert',
|
|
data () {
|
|
return {}
|
|
},
|
|
computed: {
|
|
shown() { return this.$store.state.alert.shown },
|
|
style() { return 'is-' + this.$store.state.alert.style },
|
|
icon() { return 'nc-icon-outline ' + this.$store.state.alert.icon },
|
|
msg() { return this.$store.state.alert.msg },
|
|
}
|
|
}
|
|
</script>
|