webpack+vue的匹配报错 财富值17

2016-10-30 02:32发布

webpack+vue匹配的报这个模板错误是怎么回事?

package.json

"vue": "^2.0.1", "vue-cli": "^2.4.0", "vue-html-loader": "^1.2.3", "vue-loader": "^9.5.1", "vue-style-loader": "^1.0.0",

vue.common.js:2569 [Vue warn]: Failed to mount component: template or render function not defined

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
13条回答

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

一周热门 更多>