增加隐私协议和政策

This commit is contained in:
2026-01-04 04:28:58 -08:00
parent d8e29af1dc
commit 8e7434f67c
18 changed files with 122 additions and 2 deletions
+10
View File
@@ -18,6 +18,16 @@ const router = createRouter({
name: 'user-center',
component: () => import('../pages/UserCenter/index.vue'),
},
{
path: '/terms-of-service',
name: 'terms-of-service',
component: () => import('../pages/TermsOfService/index.vue'),
},
{
path: '/privacy-policy',
name: 'privacy-policy',
component: () => import('../pages/PrivacyPolicy/index.vue'),
},
],
})