关于postcss:vue中px转rem插件

35次阅读

共计 265 个字符,预计需要花费 1 分钟才能阅读完成。

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: ['*']
    }
  }
}

正文完
 0