18 lines
431 B
Vue
18 lines
431 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
order: Object
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="is-flex is-flex-direction-column is-gap-2 is-align-items-center">
|
|
<Icon
|
|
name="material-symbols:receipt-long-outline-rounded"
|
|
:size="50"
|
|
class="has-text-grey-70"
|
|
/>
|
|
<p>Chưa có hoá đơn</p>
|
|
<button class="button is-primary has-background-purple">Tạo hoá đơn</button>
|
|
</div>
|
|
</template>
|