webpack打包時出現(xiàn)這個問題
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. 老師這個是怎么回事
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. 老師這個是怎么回事
2018-09-13
舉報
2018-09-14
vue-loader 升級到15后需要加上這個插件
const VueLoaderPlugin = require('vue-loader/lib/plugin')
配置里面加上這個插件
plugins: [
??? new VueLoaderPlugin()
? ]