This commit is contained in:
仲么了
2024-03-01 15:11:20 +08:00
13 changed files with 859 additions and 39 deletions

View File

@@ -98,6 +98,7 @@ import FieldRender from '@/components/table/fieldRender/index.vue'
import Column from '@/components/table/column/index.vue'
import { useConfig } from '@/stores/config'
import type TableStoreClass from '@/utils/tableStore'
import { defaultAttribute } from '@/components/table/defaultAttribute'
const config = useConfig()
@@ -114,7 +115,7 @@ const props = withDefaults(defineProps<Props>(), {
onMounted(() => {
tableStore.table.ref = tableRef.value as VxeTableInstance
})
console.log(props)
// console.log(props)
const onTableSizeChange = (val: number) => {
tableStore.onTableAction('page-size-change', { size: val })
}