Skip to content

Latest commit

 

History

History
40 lines (37 loc) · 1.08 KB

vue.js坑.md

File metadata and controls

40 lines (37 loc) · 1.08 KB

1.路由编写

多个路由之间应该换行 逗号 分隔, 否则报错 任何地方都不能多余空格,比如 最后一个路由 在 】 内 空了一行也报错

错误代码
export default new Router({
  routes: [
    {
      path: '/',
      name: 'Hello',
      component: HelloWorld
    },
    {
      path: '/first',
      name: 'First',
      component: First
    },
    {
      path: '/user/:id/:name',
      name: 'User',
      component: User
    },{ // **这里应该换行,否则报错**
<font color=red>内容</font>
      path: '/user/:id/post/:post_id',
      name: 'User',
      component: User
    }
// **这里换行了编译不通过**
  ]
})

路由间未换行

image

路由后有空行

image

template 和 script 后面有空行

image