mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
77 lines
1.6 KiB
Vue
77 lines
1.6 KiB
Vue
<template>
|
||
<fade-transition>
|
||
<b-alert
|
||
v-model="visible"
|
||
:variant="type"
|
||
:class="[{ 'alert-dismissible': dismissible }]"
|
||
role="alert"
|
||
>
|
||
<slot v-if="!dismissible"></slot>
|
||
<template v-else>
|
||
<template v-if="icon || $slots.icon">
|
||
<slot name="icon">
|
||
<span class="alert-icon" data-notify="icon">
|
||
<i :class="icon"></i>
|
||
</span>
|
||
</slot>
|
||
</template>
|
||
|
||
<span class="alert-text"><slot></slot></span>
|
||
|
||
<slot name="dismiss-icon">
|
||
<button
|
||
type="button"
|
||
class="close"
|
||
data-dismiss="alert"
|
||
aria-label="Close"
|
||
@click="dismissAlert"
|
||
>
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</slot>
|
||
</template>
|
||
</b-alert>
|
||
</fade-transition>
|
||
</template>
|
||
<script>
|
||
import { FadeTransition } from 'vue2-transitions'
|
||
|
||
export default {
|
||
name: 'base-alert',
|
||
components: {
|
||
FadeTransition,
|
||
},
|
||
created() {
|
||
//console.log('base-alert gesetzt in =>', this.$route.path)
|
||
},
|
||
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
|
||
this.$store.state.loginfail = false
|
||
},
|
||
},
|
||
}
|
||
</script>
|