1. 安装 lib-flexible

      1. npm i lib-flexible --save
    2. 在 main.js 中引入 lib-flexible

      1. import 'lib-flexible/flexible'
    3. 安装 postcss-pxtorem

      1. npm i postcss-pxtorem
    4. 配置 postcss-pxtorem

    在根目录 .postcssrc.js文件中修改
    此文件自动生成,如没有,手动添加

    1. module.export = {
    2. "plugins": {
    3. "autoprefixer": {},
    4. 'postcss-pxtorem': {
    5. rootValue: 75, // 75表示750设计稿,37.5表示375设计稿
    6. propList: ['*']
    7. }
    8. }
    9. }
    1. 对于引入 vant 组件的特殊处理

    vant 设计稿为 375,当以 750 设计稿为基础设置的时候,需要屏蔽 vant

    1. // 在 .postcssrc.js => postcss-pxtorem 对象中 添加
    2. selectorBlackList: ['van'],
    3. exclude: /web/i //忽略 web下所有文件
    1. 针对ipad 和 ipad pro 设备无效,针对这些设备网上找到了方法,记录下
      1. // 在index.html中添加如下代码
      2. <script>
      3. /(pad|pod|iPad|iPod|iOS)/i.test(navigator.userAgent)&&(head=document.getElementsByTagName('head'),viewport=document.createElement('meta'),viewport.name='viewport',viewport.content='target-densitydpi=device-dpi, width=480px, user-scalable=no',head.length>0&&head[head.length-1].appendChild(viewport));
      4. </script>