提交 9f5085c9 编写于 作者: 无木

fix(table): useTable support onChange

修复useTable无法直接通过设置onChange来注册change事件响应的问题
上级 9f4d1719
......@@ -58,6 +58,7 @@
import { omit } from 'lodash-es';
import { basicProps } from './props';
import { isFunction } from '/@/utils/is';
export default defineComponent({
components: {
......@@ -142,6 +143,9 @@
function handleTableChange(...args) {
onTableChange.call(undefined, ...args);
emit('change', ...args);
// 解决通过useTable注册onChange时不起作用的问题
const { onChange } = unref(getProps);
onChange && isFunction(onChange) && onChange.call(undefined, ...args);
}
const {
......
......@@ -15,7 +15,7 @@
<a-button class="mr-2" @click="clearSelect"> 清空选中行 </a-button>
<a-button class="mr-2" @click="getPagination"> 获取分页信息 </a-button>
</div>
<BasicTable @register="registerTable" @change="onChange" />
<BasicTable @register="registerTable" />
</div>
</template>
<script lang="ts">
......@@ -54,6 +54,7 @@
columns: getBasicColumns(),
rowKey: 'id',
showTableSetting: true,
onChange,
rowSelection: {
type: 'checkbox',
},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册