这样写会得undefined
改写
<el-table-column
align="center"
label="操作"
key="slot"
>
<template #default="scope">
<el-button
type="text"
size="small"
@click="locationPipe(scope.row)"
>定位</el-button>
</template>
</el-table-column>