mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 13:11:43 +00:00
38 lines
490 B
Vue
38 lines
490 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: Array,
|
|
default: () => {
|
|
return [];
|
|
}
|
|
},
|
|
row: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
to() {
|
|
const to = this.row?.detailLocation;
|
|
|
|
to.hash = '#instances';
|
|
|
|
return to;
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<router-link
|
|
v-if="value.length > 0"
|
|
:to="to"
|
|
>
|
|
{{ value.length }}
|
|
</router-link>
|
|
</template>
|