出现Vue router : TypeError: Cannot read property '$createElement' of undefined这样的错误,怎么办?
出现这个错误是因为:在写路由分配表的时候component的时候多写了一个s,去掉就好错误代码如下:const routes =[{path:'/home',components:Home},{path:'/cart',components:Cart}]正确的代码...
·
出现这个错误是因为:
在写路由分配表的时候component的时候多写了一个s,去掉就好
错误代码如下:
const routes =[
{
path:'/home',
components:Home
},
{
path:'/cart',
components:Cart
}
]
正确的代码如下:
const routes =[
{
path:'/home',
component:Home
},
{
path:'/cart',
component:Cart
}
]
更多推荐
已为社区贡献1条内容
所有评论(0)