diff --git a/.eslintrc.js b/.eslintrc.js index 8ab68ce..9d9fa93 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -18,6 +18,7 @@ module.exports = { 'vue/html-self-closing': 'off', 'vue/max-attributes-per-line': 'off', 'vue/multiline-html-element-content-newline': 'off', + 'vue/no-v-html': 'off', 'vue/singleline-html-element-content-newline': 'off' } }; diff --git a/postcss.config.js b/postcss.config.js index fdf0fe8..a54d237 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -7,8 +7,10 @@ module.exports = { ] }, 'postcss-pxtorem': { + mediaQuery: true, + propList: ['*'], rootValue: 16, - propList: ['*'] + unitPrecision: 3, } } };