欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
      }
    }
  }

上一篇:

下一篇: