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

kaColumns: [ { title: "标题", tree: true, render: (h, params) => { if (params.row) { if (params.row.couTitle) { return h("span", params.row.couTitle); } if (params.row.couTitleCn) { return h("span", params.row.couTitleCn); } if...

### Environment chrome95,VUE3 ### Reproduction link [https://run.iviewui.com/UAICLCh5](https://run.iviewui.com/UAICLCh5) ### Steps to reproduce 在非构建环境下(本地引入VUE和iView组件,直接在HTML中写VUE代码,当成jquery用),table组件的slot名称若存在大小写,会报的组件无法渲染的错误( [this.column.slot] is not a function),若名称改为全小写,则一切正常。例如重现链接中的“personName”,若改为“personname”就没问题,否则就报错 ### What is expected? 正常渲染出来的table ### What is actually happening? [this.column.slot] is not...

![image](https://github.com/view-design/ViewUIPlus/assets/78591878/9f68d8cb-42ee-4357-b8e1-4edf6a676568) Hey folks, Seeing a symbol instead of icon. Any help?

[Demo](https://run.iviewui.com/RVAcUJKW) #296 Run `npm test` error `Missing script: "test"` Run `karma start` error `Cannot find module '../../build/webpack.test.config.js'`

### 版本 ``` "view-ui-plus": "^1.3.13", "vue": "^3.2.47", "vite": "^4.5.0", ``` ``` ``` ![image](https://github.com/view-design/ViewUIPlus/assets/103058940/6f0050e5-560b-4ce0-8c70-6c069b0bbeaf) format属性在文档中标注为Date类型 源码中props.format缺接收string类型。 我该怎么做才能正确传入类型?

### Environment view-ui-plus 1.3.14 ### Reproduction link https://run.iviewui.com/knR6ZUjk ### Steps to reproduce 见链接 ### What is expected? table > column > type=html时,render执行代码 ### What is actually happening? table > column...

"view-ui-plus": "1.3.5", "vue": "^3.2.45", "vuex": "^4.1.0" ``` {{ item.value }}

修复Select组件filter-by-label属性问题,问题来自https://github.com/view-design/ViewUIPlus/issues/320 问题出现原因为即使filter-by-label属性被设置为false,搜索时当Lable不为空时仍仅使用Lable,只有其为空时才会使用Value 本问题解决方法为当filter-by-label属性被设置为false时,同时将Lable与Value用于搜索

修复InputNumber组件数据更新问题,问题来自https://github.com/view-design/ViewUIPlus/issues/326 问题出现原因为InputNumber组件会在每次内容发生变化时实时更新值,并判断最大最小值等一系列情况,因此当用户想重新输入数据后,在输入第一位数字时值只能在0-9之间,如果最小值至少为10就会直接更新为最小值,从而导致后续的输入问题 结合过往网页使用体验并参考了其他组件库,发现绝大部分数字输入框的值更新会发生在其失焦时,这样可以使用户自由地输入所需内容,并在最后确定是否符合限定条件,不会在输入的过程中不断处理,保证了用户流畅的使用过程,同时避免了过高频率的检测限制了直接输入的内容,导致很多值只能通过逐渐加减来得到 本问题解决方法为将组件内检测值是否合法的过程由input以及change时会触发的change函数中移动至失焦时触发的blur函数中,即可得到常规的使用效果