扩展ant-design-vue的按钮样式的方法

版本信息

ant-design-vue 1.x

ant-design-vue目前是提供了这些样式
扩展ant-design-vue的按钮样式的方法_第1张图片

然后我感觉应该有个很常见的是需要一个黄色警告的按钮

期望的用法当然就是type="warning"啦。

话不多说,直接上代码。


在项目里添加一个less文件

@import '~ant-design-vue/lib/style/themes/default.less';
@import '~ant-design-vue/lib/button/style/mixin.less';

.create-type(@type,@bgColor,@textColor:white) {
  .ant-btn {
    &-@{type} {
      .button-variant-primary(@textColor;@bgColor);
    }
    &-background-ghost&-@{type} {
      .button-variant-ghost(@bgColor);
    }
  }
}

.create-type(warning, #ffae00);

然后就可以在项目中这样使用了

warning
warning+ghost

image.png

注意事项

需要开启less-loaderjavascriptEnabled选项

vue-cli项目参考下面代码

module.exports = {
    css:{
        loaderOptions:{
            less:{
                javascriptEnabled:true
            }
        }
    }
}

你可能感兴趣的:(ant-design-vue)