page: 新增页面: 📄 菜品管理

This commit is contained in:
bunny 2024-02-18 16:37:04 +08:00
parent b6f49d9dad
commit 110c86d909
3 changed files with 20 additions and 0 deletions

View File

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

5
src/views/dish/index.vue Normal file
View File

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

View File

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