jeecgboot-vue3/issues/181 修复第一次进入时列表配置不能拖拽

pull/216/head
zhangdaiscott 2022-11-01 16:40:53 +08:00
parent 5b4a37cf95
commit 737312e959
1 changed files with 4 additions and 2 deletions

View File

@ -142,8 +142,10 @@
setup(props, { emit, attrs }) {
const { t } = useI18n();
const table = useTableContext();
const popoverVisible = ref(false);
const popoverVisible = ref(true);
// update-begin--author:sunjianlei---date:20221101---for:
nextTick(() => popoverVisible.value = false);
// update-end--author:sunjianlei---date:20221101---for:
const defaultRowSelection = omit(table.getRowSelection(), 'selectedRowKeys');
let inited = false;