在Vue 3 中,defineProps是通过defineComponent的参数来定义的,而不是直接调用。 使用ref: 确保tableRef正确地引用了ElTable实例。 示例代码 <template><el-tableref="tableRef":data="data"v-bind="$attrs"><slot></slot></el-table></template> import { defineComponent, ref, h } from 'vue'; import...