fix(table): useTable support onChange

修复useTable无法直接通过设置onChange来注册change事件响应的问题
This commit is contained in:
无木 2021-05-30 18:10:16 +08:00
parent 9f4d1719ca
commit 9f5085c9f9
2 changed files with 6 additions and 1 deletions

View File

@ -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);
// useTableonChange
const { onChange } = unref(getProps);
onChange && isFunction(onChange) && onChange.call(undefined, ...args);
}
const {

View File

@ -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',
},