vue中px转rem插件
Posted 化身孤岛的鲸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中px转rem插件相关的知识,希望对你有一定的参考价值。
1.amfe-flexible
- 根据网页宽度自动更改html字体大小
yarn add amfe-flexible -S
npm i amfe-flexible -S
- main.js中引入
import "amfe-flexible"
2.postcss
- 下载
yarn add postcss postcss-pxtorem@5.1.1 -D
- 自动将px转换为rem
- 根目录下创建postcss.config.js文件
module.exports = {
plugins: {
\'postcss-pxtorem\': {
rootValue: 37.5,
propList: [\'*\']
}
}
}
以上是关于vue中px转rem插件的主要内容,如果未能解决你的问题,请参考以下文章