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

Posted nili

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your w相关的知识,希望对你有一定的参考价值。

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

以上是关于vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your w的主要内容,如果未能解决你的问题,请参考以下文章