postcss-extend
1.安装
# yarn add postcss-extend -D
2.配置(postcss.config.js)
module.exports = {
plugins: [
...,
require('postcss-extend')
]
}
3.使用
%test {
color: blue;
}
.a {
@extend %test;
font-size: 12px;
}
.b {
@extend %test;
}