page: 新增页面: 📄 员工管理

This commit is contained in:
bunny 2024-02-18 16:38:21 +08:00
parent c37f24d2b9
commit 18f37c5c1a
2 changed files with 10 additions and 0 deletions

View File

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

View File

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