媒体报道&联系我们

This commit is contained in:
李志鹏
2026-05-19 15:55:49 +08:00
parent db73c58525
commit 50ab3853f0
17 changed files with 1529 additions and 173 deletions

View File

@@ -1,6 +1,5 @@
import type { RouteRecordRaw } from 'vue-router'
import AboutView from './pages/about-us/index.vue'
import ContactView from './pages/ContactView.vue'
import HomeView from './pages/home/index.vue'
import ProductsView from './pages/ProductsView.vue'
import { LANGS } from './lang'
@@ -22,10 +21,15 @@ export const routes: RouteRecordRaw[] = [
name: 'products',
component: ProductsView
},
{
path: 'media',
name: 'media',
component: () => import('./pages/media/index.vue')
},
{
path: 'contact-us',
name: 'contact',
component: ContactView
name: 'contact-us',
component: () => import('./pages/contact-us/index.vue')
},
{
path: 'aida',
@@ -53,6 +57,14 @@ export const routes: RouteRecordRaw[] = [
path: 'subscriptions',
component: () => import('./pages/my-account/subscriptions.vue'),
},
{
path: 'address',
component: () => import('./pages/my-account/address.vue'),
},
{
path: 'payment-methods',
component: () => import('./pages/my-account/payment-methods.vue'),
},
{
path: ':pathMatch(.*)*',
component: () => import('./pages/my-account/welcome.vue'),