Base Login

This commit is contained in:
ThienPhamVan
2026-03-25 10:06:01 +07:00
commit 3a2e16cf19
81 changed files with 27983 additions and 0 deletions

23
components/Caption.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<div class="field is-grouped">
<div class="control is-expanded">
<span :class="`icon-text fsb-${size||17} ${type || 'has-text-findata'}`">
<b>{{ title }}</b>
<span class="material-symbols-outlined">
chevron_right
</span>
</span>
</div>
<div class="control" v-if="note">
<span class="icon-text px-2 fs-14 has-text-grey-dark" v-for="v in note">
<span class="mdi mdi-circle" :style="`color:${v.color}`"></span>
<span class="ml-2">{{ v.text }}</span>
</span>
</div>
</div>
</template>
<script>
export default {
props: ['type', 'size', 'title', 'note', 'convert']
}
</script>