page: 新增页面: 📄 分类管理
This commit is contained in:
parent
110c86d909
commit
c37f24d2b9
|
@ -26,6 +26,11 @@ const routes: Array<RouteRecordRaw> = [
|
|||
name: 'dish',
|
||||
component: () => import(/* webpackChunkName: "dish" */ '@/views/dish/index.vue'),
|
||||
},
|
||||
{
|
||||
path: 'category',
|
||||
name: 'category',
|
||||
component: () => import(/* webpackChunkName: "category" */ '@/views/category/index.vue'),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<script lang="ts" setup></script>
|
||||
|
||||
<template>分类管理</template>
|
||||
|
||||
<style lang="scss" scoped></style>
|
Loading…
Reference in New Issue