page: 新增页面: 📄 分类管理

This commit is contained in:
bunny 2024-02-18 16:37:45 +08:00
parent 110c86d909
commit c37f24d2b9
2 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,11 @@ const routes: Array<RouteRecordRaw> = [
name: 'dish', name: 'dish',
component: () => import(/* webpackChunkName: "dish" */ '@/views/dish/index.vue'), component: () => import(/* webpackChunkName: "dish" */ '@/views/dish/index.vue'),
}, },
{
path: 'category',
name: 'category',
component: () => import(/* webpackChunkName: "category" */ '@/views/category/index.vue'),
},
], ],
}, },
{ {

View File

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