Vue-router cannot read property _c of undefined

来源:互联网 发布:nginx加tomcat 编辑:程序博客网 时间:2024/06/15 13:36

Vue-router Exception

当点击“商品”标签的时候,consolse(控制台)跳出
cannot read property _c of undefined的异常

异常信息

此时观察你的main.js中routes添加组件的时候:
和path相对应的一定是component,不是components,正确答案如下

const routes = [  {path: '/goods', component: goods},  {path: '/ratings', component: ratings},  {path: '/sellers', component: sellers}];

而不是

const routes = [  {path: '/goods', components: goods},  {path: '/ratings', components: ratings},  {path: '/sellers', components: sellers}];

希望能帮到你

阅读全文
0 0
原创粉丝点击