html代码:
<el-table :data="tableData" style="width: 100%">
<el-table-column type="index" label="序号" width="180" />
<el-table-column prop="province" label="省(区、市)" width="200" />
<el-table-column prop="city" label="城市(自治州)" width="200" />
<el-table-column
v-for="(item, index) in tableTitle"
:prop="item.key"
:label="item.name"
min-width="220"
>
<template #default="scope">
<el-link type="primary" @click="goToDetail(scope, item.key)">{{
scope.row[item.key]
}}</el-link>
</template>
</el-table-column>
</el-table>
数据结构: