DevCloudFE / vue-devui

UI components based on Vue3 and DevUI Design
https://vue-devui.github.io
MIT License
1.01k stars 291 forks source link

feat(button): add `iconPos` for button component #1867

Open fu050409 opened 1 month ago

fu050409 commented 1 month ago

允许设置 Button 图标位置

Resolved: #1866

What's Changed

  1. 为 Button 新增图标方位控制
  2. 已完成 Button 文档更新
fu050409 commented 1 month ago

这里我做一下解释:

我之所以提供此接口是在尝试使DevUI的过程中,我认为使用iconPos可以快速完成图标位置的切换,如果手动实现较为复杂且经测试可能出现使用默认图标和自定义右侧图标样式不完全一致(因为用户需要翻阅源码或进行元素审查才能知道我们默认图标的样式是如何实现的),直接加入此prop可以在使用component内置的图标接口的情况下完成。而且我看到DevUI中的Search元件同样包含了选择搜索图标方向的接口。

同时我参考了与我们类似的组件库PrimeVueHyperUI,均提供了类似iconPos的方案,而Element UI也提供了一个样式来实现右侧图标。

当然,如果确认此功能是不必要的,那么可以直接关闭此pr。