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