Files
login/components/snackbar/Error.vue
Xuan Loi 56f3509d4d changes
2025-12-05 17:53:49 +07:00

21 lines
546 B
Vue

<template>
<div>
<Caption v-bind="{title: 'Lỗi', type: 'has-text-findata'}"></Caption>
<div class="field is-grouped mb-0">
<div class="control is-expanded pr-3" v-html="content"></div>
<div class="control">
<span class="material-symbols-outlined has-text-findata fs-34">error</span>
</div>
</div>
</div>
</template>
<script>
export default {
props: ['content', 'duration'],
methods: {
cancel() {
this.$store.commit('updateStore', {name: 'showmodal', data: undefined})
}
}
}
</script>