vue的路由(route) 发表于 2017-06-11 | 分类于 VUE | | 本文总阅读量 次 字数统计: 56 | 阅读时长 ≈ 1 vue的路由 注意: component后面的值不要有引号,父级不要有名字name属性 12345678910111213141516[ { path: '/', component: Bigdata, children: [ { path: '', redirect: { name: 'Table' } },{ path: 'table', name: 'Table' , component: Table } ] } ]