码迷,mamicode.com
首页 > 其他好文 > 详细

路由配置

时间:2018-03-27 01:48:33      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:path   use   mode   post   blog   config   tip   路由配置   isa   

import Vue from ‘vue‘
import App from ‘./App‘
import VRouter from ‘vue-router‘
import Apple from ‘./components/apple‘
import World from ‘./components/world‘

Vue.config.productionTip = false
Vue.use(VRouter)
let router=new VRouter({
mode:‘history‘,
routes:[
{
path:‘/apple‘,
component:Apple
},
{
path:‘/world‘,
component:World
}
]
})
/* eslint-disable no-new */
new Vue({
el: ‘#app‘,
router,
components: { App },
template: ‘<App/>‘
})

路由配置

标签:path   use   mode   post   blog   config   tip   路由配置   isa   

原文地址:https://www.cnblogs.com/dianzan/p/8654757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!