vue自适应布局的n中方法

在index.html中

head标签中

  

cnpm i lib-flexible -S
cnpm i postcss-pxtorem -D

postcss.config.js

module.exports = {
  plugins: {
    autoprefixer: {},
    'postcss-pxtorem': {
      'rootValue': 75, // 设计稿宽度的1/10,(JSON文件中不加注释,此行注释及下行注释均删除)
      'propList': ['*'] // 需要做转化处理的属性,如`hight`、`width`、`margin`等,`*`表示全部
    }
  }
}

main.js
import 'lib-flexible'

验证


你可能感兴趣的:(Vue,CSS,长路漫漫,唯剑作伴,[前端][项目初期工作])