Initial commit
This commit is contained in:
9
app/components/handover/HandoverStatus.vue
Normal file
9
app/components/handover/HandoverStatus.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user