21 lines
572 B
Vue
21 lines
572 B
Vue
<template>
|
|
<div>
|
|
<Caption v-bind="{title: 'Success', type: 'has-text-primary'}"></Caption>
|
|
<div class="field is-grouped mb-0 pb-0">
|
|
<div class="control is-expanded pr-3 mb-0" v-html="content"></div>
|
|
<div class="control mb-0">
|
|
<span class="material-symbols-outlined has-text-primary fs-34">check_circle</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['content', 'duration'],
|
|
methods: {
|
|
cancel() {
|
|
this.$store.commit('updateStore', {name: 'showmodal', data: undefined})
|
|
}
|
|
}
|
|
}
|
|
</script> |