vue 移动端屏幕适配

https://github.com/evrone/postcss-px-to-viewport/blob/master/README_CN.md
基本配置

// eslint-disable-next-line no-undef
module.exports = {
    plugins: {
        "postcss-px-to-viewport": {
            viewportWidth: 375,
            // viewportHeight: 667,
            unitPrecision: 2,
            viewportUnit: 'vw',
            selectorBlackList: [],
            minPixelValue: 1,
            mediaQuery: false
        }
    }
};

  

posted on 2019-08-01 12:10  童彪  阅读(185)  评论(0编辑  收藏  举报

导航