AcWrong02

Results 25 issues of AcWrong02

### What problem does this feature solve? 我们需要实现一个功能是任务管理,会采用树形表格进行实现,基本功能点如下 1. 红色的是一些树形节点,我希望将蓝色的行拖拽到其它树形节点的下方(必须),如图所示 2. 处于同一级的节点也可以进行上下拖拽改变其位置(可选) ![image](https://github.com/VisActor/VTable/assets/147061401/d543965d-e433-4879-ad8f-8f8d15ac592c) ### What does the proposed API look like? 新增配置属性: 是否支持跨父节点拖拽 类似功能的issue:https://github.com/VisActor/VTable/issues/1485

# PR ## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our [Commit Message Guidelines](https://github.com/opentiny/tiny-vue/blob/dev/CONTRIBUTING.md) - [x] Tests for the changes...

enhancement

# PR ## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our [Commit Message Guidelines](https://github.com/opentiny/tiny-vue/blob/dev/CONTRIBUTING.md) - [ ] Tests for the...

enhancement

### Version latest ### Vue Version latest ### Link to minimal reproduction ``` {{ item }} import { Carousel, CarouselItem } from '@opentiny/vue' export default { components: { TinyCarousel: Carousel,...

bug

### Version latest ### Vue Version latest ### Link to minimal reproduction 根据官方文档,打开一个链接 https://opentiny.design/tiny-vue/zh-CN/os-theme/components/cascader ### Step to reproduce ![image](https://github.com/opentiny/tiny-vue/assets/147061401/850d97d6-6b7a-4e01-91ba-720b44216e40) 明明选择的是组合式API,进入演练场显示的却是选项式的 ### What is expected 选择组合式API,进入演练场应该显示组合式API对应代码 选择选项式API,进入演练场应该显示选项式API对应代码 ### What is actually...

bug
developing

### Version latest ### Vue Version latest ### Link to minimal reproduction https://opentiny.design/tiny-vue/zh-CN/os-theme/components/select#multiple ### Step to reproduce 1. 打开官方文档:https://opentiny.design/tiny-vue/zh-CN/os-theme/components/select#multiple 2. 点击多选的一个demo后,按上下键进行选择选项(会发现页面滚动条也会跟着一起滚动)。如果第一次没有出现这种情况,就关闭多选框后再打开,继续按上下键进行选择选项。 ### What is expected 页面滚动条不受上下键按下的影响 ### What is actually...

bug
need discussion

### What problem does this feature solve 用户可以通过tab键来选择选项 ### What does the proposed API look like null

enhancement

### Version latest ### Vue Version latest ### Link to minimal reproduction import { ref } from 'vue' import { Input as TinyInput, Modal } from '@opentiny/vue' const clearValue =...

bug

### What problem does this feature solve 当前modal组件有对应的close事件,但是在type="message"的时候消息消失后并不会触发,希望能在消息消失的时候也可以触发其对应的close事件 ### What does the proposed API look like Modal.message({ message: '基本提示图标', status: 'info' , close:()=>{console.log('message')} })} 当message消失的时候执行close函数,其参数可以为被关闭的message实例

enhancement

### What problem does this feature solve 虽然我们可以通过watch组件的visible属性来判断是打开还是关闭状态从而触发相应的回调函数,但新增open回调函数可以降低用户的心智负担 ### What does the proposed API look like ``` 打开事件示例 内容区域 import { ref } from 'vue' import { Drawer as TinyDrawer,...

enhancement
good first issue