diff --git a/src/components/down-menu.vue b/src/components/down-menu.vue
index 43d3104..1ec1c25 100644
--- a/src/components/down-menu.vue
+++ b/src/components/down-menu.vue
@@ -4,7 +4,7 @@
{{ title }}
-
+
import('./pages/help-centre/index.vue')
},
- {
- path: 'my-account',
- name: 'MyAccount',
- component: () => import('./pages/my-account/index.vue'),
- children: [
- {
- path: '',
- name: 'welcome',
- component: () => import('./pages/my-account/welcome.vue'),
- },
- {
- path: 'orders',
- name: 'orders',
- component: () => import('./pages/my-account/orders.vue'),
- },
- {
- path: 'subscriptions',
- name: 'subscriptions',
- component: () => import('./pages/my-account/subscriptions.vue'),
- },
- {
- path: 'address',
- name: 'address',
- component: () => import('./pages/my-account/address.vue'),
- },
- {
- path: 'payment-methods',
- name: 'payment-methods',
- component: () => import('./pages/my-account/payment-methods.vue'),
- },
- {
- path: ':pathMatch(.*)*',
- name: 'not-found-welcome',
- component: () => import('./pages/my-account/welcome.vue'),
- },
- ]
- },
+ // {
+ // path: 'my-account',
+ // name: 'MyAccount',
+ // component: () => import('./pages/my-account/index.vue'),
+ // children: [
+ // {
+ // path: '',
+ // name: 'welcome',
+ // component: () => import('./pages/my-account/welcome.vue'),
+ // },
+ // {
+ // path: 'orders',
+ // name: 'orders',
+ // component: () => import('./pages/my-account/orders.vue'),
+ // },
+ // {
+ // path: 'subscriptions',
+ // name: 'subscriptions',
+ // component: () => import('./pages/my-account/subscriptions.vue'),
+ // },
+ // {
+ // path: 'address',
+ // name: 'address',
+ // component: () => import('./pages/my-account/address.vue'),
+ // },
+ // {
+ // path: 'payment-methods',
+ // name: 'payment-methods',
+ // component: () => import('./pages/my-account/payment-methods.vue'),
+ // },
+ // {
+ // path: ':pathMatch(.*)*',
+ // name: 'not-found-welcome',
+ // component: () => import('./pages/my-account/welcome.vue'),
+ // },
+ // ]
+ // },
{ path: 'privacy-policy',
name: 'privacy-policy',
component: () => import('./pages/others/privacy-policy.vue')