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