vue3.0使用rem
程序员文章站
2024-01-02 12:34:16
...
安装插件
1、npm i amfe-flexible
2、npm i postcss-px2rem
在main.js中导入
import 'amfe-flexible'
在package.json中配置,以iPhone6为基准
"postcss": {
"plugins": {
"autoprefixer": {},
"postcss-px2rem": {
"remUnit": 37.5
}
}
}