一.安装依赖

  1. yarn add lib-flexible postcss-pxtorem

二.postcss.config.js

  1. module.exports = {
  2. plugins: {
  3. "postcss-pxtorem": {
  4. "rootValue": 75,
  5. "propList": ["*"]
  6. }
  7. }
  8. }

三、main.js中导入

  1. import 'lib-flexible/flexible'

四.rem是为移动端而生的要在pc和pad上跑动,一定要在App.vue文件中加

  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <style>
  7. #app{
  8. width:10rem;
  9. margin-left:auto;
  10. margin-right:auto;
  11. }
  12. </style>

5.样式重置

//main.js
import ‘@/assets/css/reset.css’