ViewUIPlus icon indicating copy to clipboard operation
ViewUIPlus copied to clipboard

An enterprise-level UI component library and front-end solution based on Vue.js 3

Results 204 ViewUIPlus issues
Sort by recently updated
recently updated
newest added

### Environment window, vue3 ### Reproduction link [https://run.iviewui.com/preview/h1mJWi1d](https://run.iviewui.com/preview/h1mJWi1d) ### Steps to reproduce 1. 本地代码项目 package.json 设置 "engines": { "node": ">=16", "npm": ">=7" } 2. 执行npm install view-ui-plus --save 3. 就会出现...

### Environment Mac OS / Google Chrome 118.0.5993.11 ### Reproduction link [https://www.iviewui.com/view-ui-plus/component/form/auto-complete](https://www.iviewui.com/view-ui-plus/component/form/auto-complete) ### Steps to reproduce Just click the autocomplete example then use click/keyEnter to select value. The return value...

当FormItem表单项的校验规则为: [ { validator: (rule, value, callback) => { callback() }, trigger: 'blur' }, { required: true, message: 'Please fill in the user name', trigger: 'blur' } ]时,label前方的红*会丢失。复现见:https://run.iviewui.com/zw7u2Wri

问题链接 :https://run.iviewui.com/KvsQ2TWn 组件设置min=80,max=120,此时无法正常在输入框中输入85,90,95,输入会被强制改成最大或最小

![image](https://github.com/view-design/ViewUIPlus/assets/101792817/f0971437-5420-445b-8171-320ac88af650) ``` columns: [ {title: '名称', key: 'name', slot: 'name', tree: true}, {title: '种类', key: 'type', slot: 'type'}, {title: '以太网口类型', key: 'Physics', slot: 'physics'}, {title: '操作', align: 'center', slot: 'action'},...

### 问题 Carousel走马灯显示第一遍图片会成功显示,第二遍显示时全是加载中,第三遍也能成功显示,第四遍报错,也就是当显示遍数为奇数是能够成功显示图片,偶数时则会全部显示为加载中 ### 重现链接 [https://run.iviewui.com/preview/tizBmaeW](https://run.iviewui.com/preview/tizBmaeW) ### 运行报错代码 ```vue import {Carousel, CarouselItem, Image} from "view-ui-plus"; export default { components: {Carousel, CarouselItem, Image}, data() { return { CarouselData: [ 'http://192.168.255.15:8888/file/images/default.jpg' ],...

### What problem does this feature solve? 有个需求 点击整行内容任意地方选中多选框, 开始自己用slot 自定义一个多选框的实现这个功能, 后来百度搜索发现table有内置属性可以触发多选 `this.$refs.tableRef.toggleSelect(index)` ,但是在文档上没有发现,走了很多弯路 ### What does the proposed API look like? ```JS handleRowClick(record,index) { if(!record._disabled){ this.$refs.tableRef.toggleSelect(index) } }, ```

### Environment vue3.2.33 ### Reproduction link [https://www.iviewui.com/view-ui-plus/component/form/input-number](https://www.iviewui.com/view-ui-plus/component/form/input-number) ### Steps to reproduce 设置precision = 2 ### What is expected? 期待失去焦点触发toFixed,而不是computed ### What is actually happening? 假如我想输入2.22 当我输入2时 我的value会立刻变成2.00 这时候我需要backspace --- InputNumber源码:...

### Environment macOS Ventura 13.4.1、Windows10、Windows11 / Chrome 114.0.5735.133 / Vue 3.0 ### Reproduction link [https://run.iviewui.com/WTcGJnn6](https://run.iviewui.com/WTcGJnn6) ### Steps to reproduce 1.点击清空数据按钮,并滑动Table底部滚动条至最末端; 2.点击填充数据按钮,列表表头与数据内容错位。 ### What is expected? 填充数据后,列表表头与相应数据所处的位置对应。 ### What is actually...