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: ['*']
}
}
}
下一篇: 父组件向子组件传参