插件
1. postcss-pxtorem
2. amfe-flexible
postcss-pxtorem
坑有点多,需要指定版本这里使用5.1.1
在项目跟目录创建postcss.config.js配置如下代码(这里只做最基础的,还有很多配置可自行上网查询)
module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 75,
propList: ['*'],
}
}
}
记得创建好后重启项目
amfe-flexible
这个就比较简单了,直接npm install amfe-flexible 就完事了,然后再main.js中引入
import 'amfe-flexible';
运行项目看到html元素上有font-size样式就算成功啦