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

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

posted @ 2020-01-06 13:33  山顶大白鲨  阅读(427)  评论(0编辑  收藏  举报