Files
Code-Create/src/pages/my-account/orders.vue
李志鹏 9eeb29da31 111
2026-05-19 10:36:47 +08:00

16 lines
292 B
Vue

<template>
<div class="orders">
<tip-box type="warning" title="No order has been made yet." />
</div>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
import tipBox from './tip-box.vue'
</script>
<style scoped lang="less">
.orders {
width: 100%;
}
</style>