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