最赞回答 / 全网最菜程序员
<...图片...>我也是最近才看的 这个是因为版本问题,老师讲的时候是webpack3+,现在已经4.16了 有些配置不太一样,需要自己手动去改,你按我的试下
2018-08-02
最赞回答 / Lavender狮子
在webpack.config.js中引入一个const VueLoaderPlugin= require('vue-loader/lib/plugin');然后再在module.exports中添加一条plugins:[ new VueLoaderPlugin()]
2018-08-01
遇到Tapable.plugin is deprecated. Use new API on `.hooks` instead可以参考https://blog.csdn.net/u011215669/article/details/81269386轻松解决
最赞回答 / 水流山
我估计是你 VueLoaderPlugin 加载不对。const VueLoaderPlugin = require('vue-loader/lib/plugin');....module.exports = {.....plugins: [new VueLoaderPlugin(),]}
2018-07-28