ts 无法识别 this.$refs
    image.png
    image.png

    解决方案:

    因为this.refs在vue3 中不支持
    在setup 函数中 定义 ref 对应的属性名,
    以截图中的 multipleTable

    1. const multipleTable = ref(null);

    在 template 模版中直接使用 ref=’multipleTable’ 即可