美文网首页
vue error tip:You are using the

vue error tip:You are using the

作者: TOPro | 来源:发表于2018-07-16 19:45 被阅读71次

在vue项目中,执行npm run dev,提示:

You are using the runtime-only build of Vue where the template compiler is not available. 
Either pre-compile the templates into render functions, or use the compiler-included build

同时页面空白,查看元素看不到任何节点。

直接替换
...
new Vue({
    ...
    components:{App},
    template:`<app></app>`,
    ...
})

new Vue({
    ...
    render: render => render(App),
    ...
})
 

原因尚未知。。英语盲

相关文章

网友评论

      本文标题:vue error tip:You are using the

      本文链接:https://www.haomeiwen.com/subject/jexipftx.html