vue-cli3.0中使用rem

Posted on 2020-04-03 17:04  猫头唔食鱼  阅读(1009)  评论(0编辑  收藏  举报

1.安装lib-flexible插件

npm i --save-dev lib-flexible

2.在main.js里引入

import 'lib-flexible'

3.安装postcss-px2rem插件

npm i --save-dev postcss-px2rem

4.新建vue.config.js,粘贴下面代码

module.exports = {
    css: {
        loaderOptions: {
            css: {},
            postcss: {
                plugins: [
                    require('postcss-px2rem')({
                        remUnit: 75
                    })
                ]
            }
        }
    }
}