1
0
mirror of https://github.com/chatopera/cosin.git synced 2025-08-01 16:38:02 +08:00

add: profile view

Signed-off-by: Kaifuny <superbiger.github@gmail.com>
This commit is contained in:
Kaifuny 2023-07-26 19:55:23 +08:00
parent ede05a0e9c
commit 62d2192a1f
2 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,11 @@ const routes: RouteRecordRaw[] = [
path: '/index',
component: NavLayout,
children: [
{
path: 'profile',
name: ROUTE_NAME.PROFILE_INDEX,
component: () => import('../views/ProfileView.vue'),
},
...dashboardRoutes,
...chatRoutes,
...workOrderRoutes,

View File

@ -0,0 +1,3 @@
<template>
<div>profile</div>
</template>