- 在 el-table 上绑定 ref
- 定义一个 tableRef
- 在方法内写滚动事件
<el-table ref="tableRef">
<script setup >
const tableRef = ref(null)
const scrollToTop = () => {
tableRef.value.setScrollTop(0)
}
</script>
<el-table ref="tableRef">
<script setup >
const tableRef = ref(null)
const scrollToTop = () => {
tableRef.value.setScrollTop(0)
}
</script>