vue3 - rem适配 (学者说)

一、安装插件

  npm i postcss-pxtorem lib-flexible -D

二、postcss.config.js

module.exports = {
    plugins: {
      'autoprefixer': {
        browsers: ['Android >= 4.0', 'iOS >= 8']
      },
      'postcss-pxtorem': {
        rootValue: 37.5,
        propList: ['*']
      }
    }
  }

三 main.js

import "lib-flexible/flexible"

猜你喜欢

转载自blog.csdn.net/SSansui/article/details/114269802