404和底部页面

This commit is contained in:
李志鹏
2026-05-20 10:55:54 +08:00
parent 9f079107f7
commit 9f77810c9e
12 changed files with 542 additions and 9 deletions

View File

@@ -82,10 +82,26 @@ export const routes: RouteRecordRaw[] = [
},
]
},
{ path: 'privacy-policy',
name: 'privacy-policy',
component: () => import('./pages/others/privacy-policy.vue')
},
{ path: 'terms-of-use',
name: 'terms-of-use',
component: () => import('./pages/others/terms-of-use.vue')
},
{ path: 'disclaimer',
name: 'disclaimer',
component: () => import('./pages/others/disclaimer.vue')
},
{ path: 'site-map',
name: 'site-map',
component: () => import('./pages/others/site-map.vue')
},
{
path: ':pathMatch(.*)*',
name: 'not-found-home',
component: HomeView,
name: 'not-found-404',
component: () => import('./pages/others/not-found-404.vue'),
},
]
}