48 lines
934 B
TypeScript
48 lines
934 B
TypeScript
import Vue from 'vue'
|
|
import VueRouter, { RouteConfig } from 'vue-router'
|
|
import Main from '../views/Main.vue'
|
|
import Market from '../views/Market.vue'
|
|
import Item from '../views/Item.vue'
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
const routes: Array<RouteConfig> = [
|
|
{
|
|
path: '/',
|
|
name: 'Main',
|
|
component: Main
|
|
},
|
|
{
|
|
path: '/index.html',
|
|
name: 'Main1',
|
|
component: Main
|
|
},
|
|
{
|
|
path: '/market',
|
|
name: 'Market',
|
|
component: Market
|
|
},
|
|
{
|
|
path: '/item',
|
|
name: 'Item',
|
|
component: Item
|
|
},
|
|
{
|
|
path: '/about',
|
|
name: 'About',
|
|
// route level code-splitting
|
|
// this generates a separate chunk (about.[hash].js) for this route
|
|
// which is lazy-loaded when the route is visited.
|
|
component: () =>
|
|
import(/* webpackChunkName: "about" */ '../views/About.vue')
|
|
}
|
|
]
|
|
|
|
const router = new VueRouter({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
routes
|
|
})
|
|
|
|
export default router
|