vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your w ebpack config.

蓝咒 提交于 2020-01-06 20:38:14

Vue Loader v15 现在需要配合一个 webpack 插件 VueLoaderPlugin 才能正确使用

// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')

module.exports = {
  // ...
  plugins: [
    new VueLoaderPlugin()
  ]
}

官方文档:https://vue-loader.vuejs.org/zh/migrating.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!