先上代碼,vue.config.js的配置以下css
module.exports = { lintOnSave: true, css: { loaderOptions: { postcss: { plugins: [ require('postcss-pxtorem')({ rootValue : 1, // 換算的基數 selectorBlackList : ['weui','mu'], // 忽略轉換正則匹配項 propList : ['*'], }), ] } } }, }
若是是使用 postcss-px2rem,都差很少vue
module.exports = { lintOnSave: true, css: { loaderOptions: { postcss: { plugins: [ require('postcss-px2rem')({remUnit: 30}), // 換算的基數 ] } } }, }
記得npm i 安裝包;vue-cli
可能遇到的坑:npm