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

版本信息

ant-design-vue 1.x

ant-design-vue目前是提供了这些样式
扩展ant-design-vue的按钮样式的方法

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

期望的用法当然就是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);

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

<a-button type="warning">warning</a-button>
<a-button type="warning" ghost>warning+ghost</a-button>

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

注意事项

需要开启less-loaderjavascriptEnabled选项

vue-cli项目参考下面代码

module.exports = {
    css:{
        loaderOptions:{
            less:{
                javascriptEnabled:true
            }
        }
    }
}
版权声明:程序员胖胖胖虎阿 发表于 2022年8月31日 上午4:48。
转载请注明:扩展ant-design-vue的按钮样式的方法 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...