@@ -280,8 +280,13 @@ const getBaseData = async () => {
console.log(e);
}
+const toolbarRef = ref<RefType>();
+const tableRef = ref<RefType>();
onMounted(() => {
queryList();
getBaseData();
+ if (tableRef.value && toolbarRef.value) {
+ tableRef.value.connect(toolbarRef.value);
+ }
});
</script>