Vue Loader v15 现在需要配合一个 webpack 插件才能正确使用:
解决方案1:把vue-loader回到v14版本
npm uninstall vue-loader
npm install vue-leader@14.2.2
解决方案2:修改webpack.config.js
新增VueLoaderPlugin
,new VueLoaderPlugin()
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
// ...
plugins: [
new VueLoaderPlugin()
]
}
如果配置vue骨架屏,需要同时修改webpack.skeleton.conf.js
,修改内容同webpack.config.js
网友评论