vue cli 3.0问题
来源:6-4 Vue项目预热 - 单文件组件与Vue中的路由
慕码人5975274
2019-03-04
vue cli 3.0问题
我的router 里面的index.js只有这么写才不报错
new Vue({
el: ‘#app’,
router,
render: h => h(App)
})
像老师一样这么写就报错,报错为:You are using the runtime-only build of Vue where the template compiler is not available.
,为什么?
new Vue({
el: ‘#app’,
router,
component: {App},
template: ‘’
})
写回答
1回答
-
因为3.0对于发的处理做了升级,这个无所谓,你升级到3.0推荐的写法就可以了
012019-03-05
相似问题