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