70 lines
1.4 KiB
Vue
70 lines
1.4 KiB
Vue
<template>
|
|
<fade-transition>
|
|
<div
|
|
v-if="visible"
|
|
class="alert"
|
|
:class="[`alert-${type}`, { 'alert-with-icon': icon }]"
|
|
role="alert"
|
|
>
|
|
<slot v-if="!dismissible"></slot>
|
|
<template v-else>
|
|
<slot name="dismiss-icon">
|
|
<button
|
|
type="button"
|
|
class="close"
|
|
aria-label="Close"
|
|
@click="dismissAlert"
|
|
>
|
|
<i class="tim-icons icon-simple-remove"></i>
|
|
</button>
|
|
</slot>
|
|
|
|
<template v-if="icon || $slots.icon">
|
|
<slot name="icon">
|
|
<span data-notify="icon" :class="icon"></span>
|
|
</slot>
|
|
</template>
|
|
|
|
<span data-notify="message"> <slot></slot> </span>
|
|
</template>
|
|
</div>
|
|
</fade-transition>
|
|
</template>
|
|
<script>
|
|
import { FadeTransition } from 'vue2-transitions';
|
|
|
|
export default {
|
|
name: 'base-alert',
|
|
components: {
|
|
FadeTransition
|
|
},
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'default',
|
|
description: 'Alert type'
|
|
},
|
|
dismissible: {
|
|
type: Boolean,
|
|
default: false,
|
|
description: 'Whether alert is dismissible (closeable)'
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: '',
|
|
description: 'Alert icon to display'
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
visible: true
|
|
};
|
|
},
|
|
methods: {
|
|
dismissAlert() {
|
|
this.visible = false;
|
|
}
|
|
}
|
|
};
|
|
</script>
|