webpack配置(编译.vue文件)

使用npm安装依赖和插件

npm i vue-loader vue-template-compiler vue-loader-plugin --save-dev

在webpack.config.js内配置

const VueLoaderPlugin = require('vue-loader/lib/plugin')

module.exports = {
    module: {
        rules: [
            {
                test: /\.vue$/,
                loader: 'vue-loader',
                options: {
                    extractCSS: true
                }
            }
        ]
    },
    plugins: [
        // make sure to include the plugin!
        new VueLoaderPlugin()
    ]
}

上一篇:YAPI + Python Flask 实现接口自动化测试


下一篇:Less