码迷,mamicode.com
首页 > 其他好文 > 详细

踩vue的bug

时间:2017-03-06 17:28:25      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:and   渲染   undle   template   component   not   并且   failed   time   

 bundle.js:896 [Vue warn]: Failed to mount component: template or render function not defined. 
 

Vue2.0有两种Build的方式:the standalone build and the runtime-only build(独立构建和运行时构建),可以知道:独立构建包括编译和支持template选项。但也要依赖于浏览器的API,所以不能用于服务端渲染。运行时构建不包括模板编译,并且不支持template选项,只能使用render选项。

重点来了,默认情况下,NPM包导出的是runtime-only build.因此为了要使用独立构建,在webpack配置中需要添加下面的代码:

 
resolve: {
  alias: {
    ‘vue$‘: ‘vue/dist/vue.js‘
  }
}

然后就好了。。。

踩vue的bug

标签:and   渲染   undle   template   component   not   并且   failed   time   

原文地址:http://www.cnblogs.com/yk-ontheway/p/6510812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!