vue 路由语法错误

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,


忽然笑
浏览 1252回答 1
1回答

一只名叫tom的猫

就是让你换个行吧?path: '/',  component: authedWrap,
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js