mirror of
https://github.com/jumpserver/lina.git
synced 2025-11-12 21:34:02 +00:00
33 lines
448 B
Vue
33 lines
448 B
Vue
<template>
|
|
<div>
|
|
<ILabel
|
|
v-for="item in value"
|
|
:key="item.key"
|
|
:label="item"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ILabel from '@/components/Widgets/ILabel/index.vue'
|
|
|
|
export default {
|
|
name: 'LabelsDetailFormatter',
|
|
components: { ILabel },
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
value: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|