import HelloWorld from './components/HelloWorld'
import header from './components/partial/header'
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
routes: [
{ path: '/', component: header, children: [ { path: 'home', component: HelloWorld } ] }
]
})
提示语法错误, 如果对象属性并非都位于同一行上,则它们必须位于新行上。
✘ http://eslint.org/docs/rules/... Object properties must go on a new line if they aren't all on the same line
srcrouter.js:10:18
path: '/', component: authedWrap,
一只名叫tom的猫
相关分类