如何自定义 elementui 的前缀
Posted wjs0509
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自定义 elementui 的前缀相关的知识,希望对你有一定的参考价值。
1、安装插件:postcss-change-css-prefix
2、在根目录下创建postcss.config.js文件,并写入如下内容:
const addCssPrefix = require(\'postcss-change-css-prefix\') module.exports = plugins: [ addCssPrefix( prefix: \'el-\', replace: \'gp-\' ) ]
上面的 gp- 就是自定义的前缀
3、在vue.config.js文件中新增以下内容:
chainWebpack(config) config.module .rule(\'change-prefix\') .test(/\\.js$/) .include.add(path.resolve(__dirname, \'./node_modules/element-ui/lib\')) .end() .use(\'change-prefix\') .loader(\'change-prefix-loader\') .options( prefix: \'el-\', replace: \'gp-\' ) .end() ,
以上是关于如何自定义 elementui 的前缀的主要内容,如果未能解决你的问题,请参考以下文章