mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
14 lines
285 B
Vue
14 lines
285 B
Vue
<template>
|
|
<router-link class="link" :to="{name: 'VXEAPI', params: {name: 'table-column'}, query: {filterName: prop}}">{{ prop || name }}</router-link>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TableColumnApiLink',
|
|
props: {
|
|
name: String,
|
|
prop: String
|
|
}
|
|
}
|
|
</script>
|