faet: 添加bbs vue3前端

This commit is contained in:
橙子
2023-03-05 20:30:44 +08:00
parent a55cba4c1f
commit 2d328234a1
16 changed files with 556 additions and 213 deletions

View File

@@ -15,6 +15,16 @@ const router = createRouter({
path: '/index',
component: () => import('../views/Index.vue')
},
{
name:'article',
path: '/article',
component: () => import('../views/Article.vue')
},
{
name:'discuss',
path: '/discuss',
component: () => import('../views/Discuss.vue')
},
]
},
{ path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFound },