Files
Code-Create/src/pages/my-account/orders.vue

16 lines
292 B
Vue
Raw Normal View History

2026-05-18 16:46:55 +08:00
<template>
2026-05-19 10:05:55 +08:00
<div class="orders">
2026-05-19 10:36:47 +08:00
<tip-box type="warning" title="No order has been made yet." />
2026-05-19 10:05:55 +08:00
</div>
2026-05-18 16:46:55 +08:00
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
2026-05-19 10:05:55 +08:00
import tipBox from './tip-box.vue'
2026-05-18 16:46:55 +08:00
</script>
<style scoped lang="less">
.orders {
2026-05-19 10:05:55 +08:00
width: 100%;
2026-05-18 16:46:55 +08:00
}
</style>