Files
web/app/components/orders/OrderReceiptTab.vue
2026-04-15 00:05:23 +07:00

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 hoá đơn</p>
<button class="button is-primary has-background-purple">Tạo hoá đơn</button>
</div>
</template>