This commit is contained in:
Viet An
2026-06-20 14:48:35 +07:00
parent 7402e61906
commit b596ea0a0f
31 changed files with 5911 additions and 13522 deletions

View File

@@ -4,8 +4,14 @@
@click="$emit('justclick')"
:style="image ? 'border: none' : ''"
>
<figure class="image" v-if="image">
<img class="is-rounded" :src="`${$path()}download?name=${image}`" />
<figure
class="image"
v-if="image"
>
<img
class="is-rounded"
:src="`${$path()}download?name=${image}`"
/>
</figure>
<div v-else>
<span>{{ text }}</span>
@@ -14,19 +20,18 @@
</template>
<script>
export default {
props: ['text', 'image', 'type', 'size'],
props: ["text", "image", "type", "size"],
};
</script>
<style>
.cbox-findata-two {
font-size: 16px;
font-weight: bold;
font-weight: 500;
width: 34px;
height: 34px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #e4e4e4;
border: 1px solid #d3d3d3;
border-radius: 50%;
}
</style>