mirror of https://github.com/rancher/dashboard.git
31 lines
433 B
Vue
31 lines
433 B
Vue
<script>
|
|
import LinkDetail from './LinkDetail';
|
|
|
|
export default {
|
|
components: { LinkDetail },
|
|
props: {
|
|
value: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
row: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span>
|
|
<LinkDetail
|
|
v-for="(el, i) in value"
|
|
:key="i"
|
|
:row="row"
|
|
v-bind="el"
|
|
/>
|
|
</span>
|
|
</template>
|