欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Vant Rem 适配

程序员文章站 2022-05-17 21:03:06
...

vant 中使用 rem
安装插件
postcss-pxtorem
lib-flexible
安装命令

npm install postcss-pxtorem --save-dev
npm i -S amfe-flexible

然后创建 postcss.config.js 文件 将下面代码赋值进去

module.exports = {
  plugins: {
    'autoprefixer': {
      browsers: ['Android >= 4.0', 'iOS >= 7']
    },
    'postcss-pxtorem': {
      rootValue: 37.5,
      propList: ['*']
    }
  }
}