| 123456789101112131415161718192021222324252627282930313233 |
- import Vue from 'vue'
- import Router from 'vue-router'
- import Home from '@/pages/home/'
- import Collection from '@/pages/collection/'
- import Exhibition from '@/pages/exhibition/'
- import CountryTime from '@/pages/country_time/'
- Vue.use(Router)
- export default new Router({
- routes: [
- {
- path: '/',
- name: 'Home',
- component: Home
- },
- {
- path: '/collection',
- name: 'collection',
- component: Collection
- },
- {
- path: '/exhibition',
- name: 'exhibition',
- component: Exhibition
- },
- {
- path: '/country_time',
- name: 'country_time',
- component: CountryTime
- }
- ]
- })
|