vue-cli3.0适配移动端

安装

npm i lib-flexible --save
npm install postcss-px2rem-exclude --save

在main.js里引入(请手动引入)

import 'lib-flexible/flexible'

然后再postcss.config.js里(若没有,请新建,跟package.json同级)

module.exports = {
  plugins: {
    autoprefixer: {},
    'postcss-px2rem-exclude': {
      remUnit: 75, // 设计图宽度尺寸的1/10
      exclude: /node_modules|folder_name/i // 这里要忽略,不然第三方引入的组件样式会被影响
    }
  }
}

最后重启项目

你可能感兴趣的:(javascript,vue)