Aifu
Aifu
建议给边框的content加上css的point-events:auto属性 现在content都被svg盖住 无法点击 加上这个属性就可以点击了
### Environment macos 12.4/chrom 103.0.5060.53/vue3 ### Reproduction link [https://run.iviewui.com/Jy83V5OO](https://run.iviewui.com/Jy83V5OO) ### Steps to reproduce props传值未生效 ### What is expected? 安装文档写的 h("div", [ h( resolveComponent("Button"), { props: { type: "text", size: "small",...
While attempting to restore the backup archive of my scheduled task, I encountered an issue. After entering the world, I get disconnected after about 10 seconds, and the server crashes....
修复Table组件在使用 fixed 时导致错位的问题,问题来自https://github.com/view-design/ViewUIPlus/issues/412 原因分析: 当表格设置了整体宽度时,固定列对应的 `` 实际宽度只等于固定列自身的宽度。 浏览器在渲染时会根据列宽自动计算行高,但由于 fixed 列的 `` 宽度不足,内容可能 被截断或换行错误。 结果导致固定列显示的文字行数与主体表格不一致,从而产生错位。 解决方案: 将固定列 `` 的宽度设置为 与主体表格相同。 这样浏览器在计算列宽和换行时,固定列与主体列保持一致,从而避免错位问题。