use icon indicating copy to clipboard operation
use copied to clipboard

Results 18 use issues
Sort by recently updated
recently updated
newest added

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

- [ ] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version 2.0.0-rc.4 ### Environment Vue3 ### Reproduction link [https://codesandbox.io/s/practical-driscoll-ysu15?file=/src/App.vue](https://codesandbox.io/s/practical-driscoll-ysu15?file=/src/App.vue) ###...

使用useForm 进行表单校验,用validateField方法校验单个字段,报错 ```js const state = reactive({ name: 'xxx' }) const rules = reactive({ name: [{ required: true }] }) const { validateField } = useForm(state, rules) // 报错 validateField('name')...

Version vue: 3.0.4 antdv: 2.0.0-rc.5 antdv/use: 0.0.1-alpha.8 Environment Vue3 Reproduction link https://codesandbox.io/s/vue3-antdv2x-menu-recursion-forked-iue1c?file=/src/App.vue Steps to reproduce 见上面的连接 What is expected? 在不传递rules 给useForm时,能正常渲染并使用 What is actually happening? 不传递rules时就会报错且页面无法渲染

提供 自动loading 自动分页 后端排序等

issue#8:useFullscreen 一个用于处理 dom 全屏的 Hook

这个例子中展示了如何使用自定义验证规则来完成密码的二次验证。本例还使用 has-feedback 属性为输入框添加了表示校验结果的反馈图标。 自定义校验 callback 必须被调用 我看useForm好像没有能验证二次密码的东西

declare function useForm(modelRef: Props, rulesRef?: Props, options?: { immediate?: boolean; deep?: boolean; validateOnRuleChange?: boolean; debounce?: DebounceSettings; }): { ....... }; function useForm(modelRef, rulesRef, options) { var initialModel = cloneDeep(modelRef); var...

- [x] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? Currently some functions does not...

enhancement