使用vue-loader15和14的坑

2019-07-13  本文已影响0人  给我把胡萝卜切成肉丁

vue-loader 15.x 版本使用时要比 **14.x ** 版本多定义一个plugin,否则会报错

根据vue-loader官方提供的15版本的声明方法,定义plugin。

const VueLoaderPlugin = require('vue-loader/lib/plugin')  
module.exports = {
  module: {
    rules: [
      // ... other rules
      {
        test: /\.vue$/,
        loader: 'vue-loader'
      }
    ]
  },
  plugins: [
    new VueLoaderPlugin()   //15版本需指定plugin
  ]}
上一篇 下一篇

猜你喜欢

热点阅读