lihongwang

Results 3 comments of lihongwang

handleChange(value) { this.$nextTick(() => { this.$refs['cascader'].getCheckedNodes() }) }

I fixed this error by install Microsoft Visual C++ 2015 Redistributable (x64) [vc_redist.x64.exe]( https://aka.ms/vs/17/release/vc_redist.x64.exe) OS: windows 11

使用硬件加速,解决了边框错乱问题,但是会带来滚动阴影问题 ```css .el-table-fixed-column--left, .el-table-fixed-column--right { transition: none !important; position: sticky; left: 0; transform: translateZ(0); will-change: transform; } ``` 使用js重新计算高度(重渲染)解决阴影滚动问题(可能会有性能问题) ```js function synchronizeRowHeights() { const rows = document.querySelectorAll('table tr'); rows.forEach((row) =>...