You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
651 B
38 lines
651 B
|
3 years ago
|
import Vue from 'vue'
|
||
|
|
import VueRouter from 'vue-router'
|
||
|
|
|
||
|
|
Vue.use(VueRouter)
|
||
|
|
|
||
|
|
const routes = [
|
||
|
|
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/vip',
|
||
|
|
name: 'vip',
|
||
|
|
component: () => import('../views/hotVIPPages/vip.vue')
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: '/recieveVIP',
|
||
|
|
name: 'recieveVIP',
|
||
|
|
component: () => import('../views/hotVIPPages/recieveVIP.vue')
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: '/hotVIPpayback',
|
||
|
|
name: 'hotVIPpayback',
|
||
|
|
component: () => import('../views/hotVIPPages/hotVIPpayback.vue')
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/privacy',
|
||
|
|
name: 'privacy',
|
||
|
|
component: () => import('../views/hotVIPPages/privacy.vue')
|
||
|
|
},
|
||
|
|
|
||
|
|
]
|
||
|
|
|
||
|
|
const router = new VueRouter({
|
||
|
|
routes
|
||
|
|
})
|
||
|
|
|
||
|
|
export default router
|