美文网首页
使用vue-loader15和14的坑

使用vue-loader15和14的坑

作者: 给我把胡萝卜切成肉丁 | 来源:发表于2019-07-13 19:46 被阅读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
      ]}
    

    相关文章

      网友评论

          本文标题:使用vue-loader15和14的坑

          本文链接:https://www.haomeiwen.com/subject/fggmkctx.html