Skip to content

Commit 5e3aded

Browse files
authored
fix(popeditor): fix popeditor can not set grid props (#3431)
1 parent 9291100 commit 5e3aded

File tree

1 file changed

+5
-0
lines changed
  • packages/vue/src/popeditor/src

1 file changed

+5
-0
lines changed

packages/vue/src/popeditor/src/pc.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<tiny-grid
6565
ref="suggest"
6666
v-if="state.showSuggestPanel"
67+
v-bind="gridOp"
6768
auto-resize
6869
:loading="state.loading"
6970
max-height="300px"
@@ -172,6 +173,7 @@
172173
<div v-if="state.activeName === 'history'" class="tabs-body-item">
173174
<tiny-grid
174175
ref="historyGrid"
176+
v-bind="gridOp"
175177
height="290px"
176178
size="mini"
177179
:highlight-current-row="true"
@@ -187,6 +189,7 @@
187189
<div v-if="state.activeName === 'source'" class="tabs-body-item">
188190
<tiny-grid
189191
v-if="multi"
192+
v-bind="gridOp"
190193
auto-resize
191194
:loading="state.loading"
192195
ref="sourceGrid"
@@ -204,6 +207,7 @@
204207
<tiny-grid
205208
v-else
206209
ref="sourceGrid"
210+
v-bind="gridOp"
207211
auto-resize
208212
:loading="state.loading"
209213
height="290px"
@@ -268,6 +272,7 @@
268272
<tiny-grid
269273
v-else
270274
ref="selectedGrid"
275+
v-bind="gridOp"
271276
auto-resize
272277
:columns="state.baseColumns"
273278
:data="state.selectedDatas"

0 commit comments

Comments
 (0)