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 db9f6cc commit 9a82fc8Copy full SHA for 9a82fc8
examples/sites/demos/pc/app/dialog-select/nest-grid-multi-composition-api.vue
@@ -133,18 +133,18 @@ const state = reactive({
133
}
134
})
135
136
-const dialogSelect = ref('')
+const dialogSelect = ref(null)
137
138
const onSizeChange = (pageSize) => {
139
state.pagerOp.pageSize = pageSize
140
141
- dialogSelect.value.valuequeryGridData()
+ dialogSelect.value?.queryGridData()
142
143
144
const onCurrentChange = (currentPage) => {
145
state.pagerOp.currentPage = currentPage
146
147
- dialogSelect.value.queryGridData()
148
149
150
const onSearch = (key, value) => {
0 commit comments