page: 新增页面: 📄 订单管理

This commit is contained in:
bunny 2024-02-18 16:35:12 +08:00
parent 96ef60c289
commit b6f49d9dad
2 changed files with 11 additions and 1 deletions

View File

@ -9,7 +9,12 @@ const routes: Array<RouteRecordRaw> = [
{
path: 'statistics',
name: 'statistics',
component: () => import(/* webpackChunkName: "login" */ '@/views/statistics/index.vue'),
component: () => import(/* webpackChunkName: "statistics" */ '@/views/statistics/index.vue'),
},
{
path: 'order',
name: 'order',
component: () => import(/* webpackChunkName: "order" */ '@/views/order/index.vue'),
},
],
},

View File

@ -0,0 +1,5 @@
<script lang="ts" setup></script>
<template>订单管理</template>
<style lang="scss" scoped></style>