16 lines
363 B
Vue
16 lines
363 B
Vue
![]() |
<template>
|
||
|
<div class="user-orders-warp">我的订单</div>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import { ref, reactive } from 'vue';
|
||
|
import { isEmpty, getAssetsFile } from '@/utils';
|
||
|
import { useRoute, useRouter } from 'vue-router';
|
||
|
const route = useRoute();
|
||
|
const router = useRouter();
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.user-orders-warp {
|
||
|
width: 100%;
|
||
|
}
|
||
|
</style>
|