harvester-ui-extension/pkg/harvester/formatters/RelatedVolumeSnapshotCounts.vue
Francesco Torchia 4f2688f6ab
Add pkg/harvester components + shell portings - 1
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:46 +02:00

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>