Vue中rem与postcss-pxtorem的应用详解

2020-06-12 21:01:30易采站长站整理

}
}
}

postcss.config.js


module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 192,
minPixelValue: 2,
propList: ['*'],
}
}
}

Reference

官方Github仓库:postcss-pxtorem
vue3.0中使用postcss-pxtorem
关于vue利用postcss-pxtorem进行移动端适配的问题