VUE路由报错 Cannot read property '$createElement' of undefined /*new Vue({ el: '#app', // 用...

VUE路由报错 Cannot read property '$createElement' of undefined /*new Vue({ el: '#app', // 用...
{path:"/",components:Users},
{path:"/test",components:Test}
上面用的是 components 应该是component
如下
{path:"/",component:Users},
{path:"/test",component:Test}
VUE路由初始化 Cannot read property '$createElement' of undefined记录一下学习日志,免得再犯这种低级错误 VUE Router初始化报错,Cannot read property '$createElement' of undefined ...