乐趣区

关于postcss: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: ['*']
    }
  }
}
退出移动版