9 lines
228 B
Vue
9 lines
228 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
status: Boolean
|
|
});
|
|
</script>
|
|
<template>
|
|
<span v-if="status" class="has-text-primary">Đã bàn giao</span>
|
|
<span v-else class="has-text-danger">Chưa bàn giao</span>
|
|
</template> |