美文网首页
Make sure to include VueLoaderPl

Make sure to include VueLoaderPl

作者: 小二儿上酒 | 来源:发表于2019-03-07 10:30 被阅读0次

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

    Vue-loader在15.*之后的版本都是 vue-loader的使用都是需要伴生 VueLoaderPlugin的.

    方法

    在webpack.config.js中加入

    const VueLoaderPlugin = require('vue-loader/lib/plugin');
    
    module.exports = {
    ......
    plugins: [
            // make sure to include the plugin for the magic
            new VueLoaderPlugin()
    ],
    }
    

    相关文章

      网友评论

          本文标题:Make sure to include VueLoaderPl

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