vuecli4适配pc端
1.首先安装amfe-flexible
npm i -S amfe-flexible
在main.js中引入
import 'amfe-flexible';
2.安装postcss-px2rem
npm i postcss-px2rem --save -dev
在vue.config.js中添加
module.exports = {
css: {
loaderOptions: {
postcss: {
plugins: [
require('postcss-px2rem')({
// 以设计稿1920为例, 1920 / 10 = 1920
remUnit: 192
}),
]
}
}
}
}