chore: install prettier

This commit is contained in:
Viet An
2026-05-04 15:22:27 +07:00
parent 93d29ca7d8
commit bd58e2b847
267 changed files with 22950 additions and 13581 deletions

View File

@@ -1,21 +1,29 @@
<template>
<div>
<Caption v-bind="{title: $stripHtml(title) || 'Thành công', type: 'has-text-primary'}"></Caption>
<Caption
v-bind="{
title: $stripHtml(title) || 'Thành công',
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 is-expanded pr-3 mb-0"
v-html="content"
></div>
<div class="control mb-0">
<SvgIcon v-bind="{name: 'check2.svg', type: 'primary', size: 24}"></SvgIcon>
<SvgIcon v-bind="{ name: 'check2.svg', type: 'primary', size: 24 }"></SvgIcon>
</div>
</div>
</div>
</template>
<script>
export default {
props: ['content', 'title'],
props: ["content", "title"],
methods: {
cancel() {
this.$store.commit('updateStore', {name: 'showmodal', data: undefined})
}
}
}
</script>
this.$store.commit("updateStore", { name: "showmodal", data: undefined });
},
},
};
</script>