媒体报道&联系我们
This commit is contained in:
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user