ViewUIPlus
ViewUIPlus copied to clipboard
An enterprise-level UI component library and front-end solution based on Vue.js 3
New York America London U.K. Sydney Australian export default { data () { return { model: '' } } }
### Environment 操作系统:windows/浏览器版本:127.0.6533.99(正式版本)(64位)/vue版本:3.4.27 ### Reproduction link [https://run.iviewui.com/PNnAb3uS](https://run.iviewui.com/PNnAb3uS) ### Steps to reproduce 如果初始化v-model绑定文本内容过多,渲染的文本框不会自适应高度,需要主动输入才会触发自适应高度 ### What is expected? 请修复这个bug,不然的话就要使用 :autosize="{minRows: x,maxRows: x}"这种了 ### What is actually happening? 实际结果渲染内容文本超出不自适应高度
### Environment Windows11/Chrome/vue-cli 5.0.8 ### Reproduction link [https://run.iviewui.com/cQJt6zVd](https://run.iviewui.com/cQJt6zVd) ### Steps to reproduce 为表格的表头设置分组 【无法正常排序】 在第一个表格,点击“年龄”字段的排序按钮,排序结果不对。 【多列无法分别排序】 在第二个表格,点击任意一个字段的排序按钮,不仅排序结果不对,两个可排序字段的排序状态会被同步 ### What is expected? 选中的字段能正常排序,且不应该影响其他可排序字段的排序情况 ### What is actually happening? 选中的字段不能正常排序,其他可排序字段的排序情况会被一起同步
At present, the DatePicker component does not support the selection of month and year ranges.
import ViewUIPlus from "view-ui-plus"; import "view-ui-plus/dist/styles/viewuiplus.css"; export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(ViewUIPlus, { transfer: true }); }); ERROR SyntaxError: The requested module '/_nuxt/node_modules/.pnpm/[email protected]/node_modules/view-ui-plus/dist/viewuiplus.min.js?v=747a3767' does not provide an export named 'default'...
### Environment windows11 / chrom127 / vue3 ### Reproduction link [https://github.com/view-design/view-ui-project-nuxt](https://github.com/view-design/view-ui-project-nuxt) ### Steps to reproduce pnpm install --shamefully-hoist ### What is expected? 正确使用iview-ui-plus ### What is actually happening? 无法使用
fix: Table component, handleMouseWheel 方法中deltaX取值错误,始终为-0,导致表头使用滑轮横向滚动方向一直为向左滚动,需要更改取值event.deltaX为event.wheelDelta才可以正常滚动
### What problem does this feature solve? 树形组件自定义title键,更加灵活 ### What does the proposed API look like? 树形组件支持自定义title键
使用DatePicker就会报Uncaught (in promise) TypeError: Cannot read properties of null (reading 'slice')的错误
### 如下图所示 **可控制到天不可选:**  **无法控制时分秒**  **目前设置不可选日期只能精确到天,时分秒无法控制,希望可以支持控制到时分秒,我的代码如下:** ``` 当前时间:{{nowTime}} 设置当前时间之后不可选: export default { data () { return { time: ['', ''], nowTime: new Date(), pickerOptions: { disabledDate: (date) => {...