We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d08cc commit 28016cbCopy full SHA for 28016cb
packages/vue/src/grid/src/grid/grid.ts
@@ -215,8 +215,8 @@ export default defineComponent({
215
setTimeout(() => this.emitter.emit('active-anchor'), this.columnAnchorParams.activeAnchor.delay)
216
},
217
viewType(value) {
218
- // 在全屏状态下切换到表格视图时额外刷新一次表格布局,解决此场景下列宽未自动撑开问题
219
- if (value === V_MF && this.fullScreenClass) {
+ // 解决从卡片、列表视图切换至表格视图后,列宽未自动撑开问题
+ if (value === V_MF) {
220
this.$nextTick(() => this.recalculate(true))
221
}
222
0 commit comments