updates
This commit is contained in:
43
src2/router/index.js
Normal file
43
src2/router/index.js
Normal file
@@ -0,0 +1,43 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
import HomeView from '../views/HomeView.vue'
|
||||
import DigiSnaxxView from '../views/DigiSnaxxView.vue'
|
||||
// import LiveView from '../views/zarchive/LiveView.vue'
|
||||
import BlueskyView from '../views/BlueskyView.vue'
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'home',
|
||||
component: HomeView
|
||||
},
|
||||
{
|
||||
path: '/beyond',
|
||||
name: '000',
|
||||
component: DigiSnaxxView
|
||||
},
|
||||
{
|
||||
path: '/medellin',
|
||||
name: 'mde',
|
||||
component: DigiSnaxxView
|
||||
},
|
||||
{
|
||||
path: '/mpls-stp',
|
||||
name: 'msp',
|
||||
component: DigiSnaxxView
|
||||
},
|
||||
// {
|
||||
// path: '/live',
|
||||
// name: 'live',
|
||||
// component: LiveView
|
||||
// },
|
||||
{
|
||||
path: '/media',
|
||||
name: 'bluesky',
|
||||
component: BlueskyView
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user