Make sure to include VueLoaderPl

2019-03-07  本文已影响0人  小二儿上酒

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()
],
}
上一篇 下一篇

猜你喜欢

热点阅读