vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.
Vue-loader在15.*之后的版本都是 vue-loader的使用都是需要伴生 VueLoaderPlugin的.
方法
在webpack.config.js中加入
const VueLoaderPlugin = require('vue-loader/lib/plugin');
module.exports = {
......
plugins: [
// make sure to include the plugin for the magic
new VueLoaderPlugin()
],
}
网友评论