frequi_origin/src/components/ftbot/BotAlerts.vue
2022-12-05 06:56:45 +01:00

19 lines
453 B
Vue

<template>
<div class="bot-alerts">
<b-alert
v-for="(alert, index) in alertStore.activeMessages"
:key="index"
v-model="alert.timeout"
:variant="alert.severity ?? 'warning'"
dismissible
@closed="alertStore.removeAlert(alert)"
>{{ alert.message }}</b-alert
>
</div>
</template>
<script setup lang="ts">
import { useAlertsStore } from '@/stores/alerts';
const alertStore = useAlertsStore();
</script>