vue3.0 vite px2rem pxtorem 移动端适配

Posted llfididi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.0 vite px2rem pxtorem 移动端适配相关的知识,希望对你有一定的参考价值。

1.添加postcss-pxtorem
npm install postcss-pxtorem -D

{
  "name": "business-manage-vue",
  "version": "0.0.0",
  "scripts": {
    "dev": "vite",
    "build": "vite build"
  },
  "dependencies": {
    "@vitejs/plugin-vue": "^1.2.5",
    "axios": "^0.21.1",
    "element-plus": "^1.0.2-beta.55",
    "qs": "^6.10.1",
    "vue": "^3.0.4",
    "vue-router": "^4.0.10",
    "vuex": "^4.0.2"
  },
  "devDependencies": {
    "@vue/compiler-sfc": "^3.0.4",
    "postcss-pxtorem": "^6.0.0",
    "sass": "^1.35.2",
    "vite": "^1.0.0-rc.13",
    "vite-plugin-style-import": "^1.0.1"
  }
}

2.新建postcss.config.js

module.exports = {
  "plugins": {
    "postcss-pxtorem": {
      rootValue: 192,
      propList: [\'*\'],
      selectorBlackList: [
        \'ant\'
      ]
    }
  }
}

以上是关于vue3.0 vite px2rem pxtorem 移动端适配的主要内容,如果未能解决你的问题,请参考以下文章

如何使用vite搭建Vue3.0

如何使用vite搭建Vue3.0

vue3.0入门:vite构建vue项目

vue3.0入门:vite构建vue项目

使用vite搭建vue3.0和ts项目过程

vue3.0+vite实现移动端自适应布局