arco-design-vue
arco-design-vue copied to clipboard
A Vue.js 3 UI Library based on Arco Design
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature Nothing ##...
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature 需求背景:国际站中一般不会采用东八区时间,因此需要支持不同时区 ##...
- [x] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## What problem does this feature solve? 需求场景:含有table及table筛选的页面,希望table在获取数据(loading)时,筛选部分也不可用(进入loading)。 目前是采取`spin`的方式,但是感觉不够方便及优雅。 ## What are the similar cases...
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## 基本信息 ## 现有案例 https://github.com/yiminghe/async-validator ## 预期解决问题 1、想找个integer验证器没找到,应该算是比较常用到的验证了 2、每个验证器的提示其实都是固定格式的,例如“xx不能为空","xx必须是一个数组", "xx至少选择1个"。我是觉得没必要每个message都写一遍。(参考async-validator中的fullField) 3、验证规则书写复杂,我要验证必填 邮箱格式,必须写两个验证器。当然这个跟第2条应该有关系。
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature ```js ```...
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature 可以参考element push...
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## Basic Info ## What are the similar cases of this feature 例如我不确定我table里内容长度想全部展示的时候 ##...
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## 基本信息 ## 现有案例 https://element-plus.gitee.io/zh-CN/component/menu.html#menu-item-%E5%B1%9E%E6%80%A7 ## 预期解决问题 menus 组件请求支持 Vue Router 路径对象
- [ ] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design-vue/issues) ## 基本信息 - **依赖包名 及 版本:** @arco-design/[email protected] - **框架版本:** 2.27.0 - **浏览器版本:** chrome101.0.4951.54 -...
1. 在模式下(其他模式未测试),current、page-size的双向绑定不起作用。 2. 由于某些情况下选择每页条数时,会触发@page-size-change的同时也触发@change,造成几乎所有场景都要手动进行防抖。 建议分页事件改为三个: @change(current, pageSize) @page-change(current) @page-size-change(pageSize) 相当于原来的@change改名为@page-change,而新@change响应任何动作(包括选择每页条数),防抖后返回两个参数。 这样监听一个新@change就能满足绝大部分场景。