mirror of https://github.com/rancher/dashboard.git
34 lines
523 B
Vue
34 lines
523 B
Vue
<script>
|
|
import Labels from '@shell/components/form/Labels';
|
|
import Tab from '@shell/components/Tabbed/Tab';
|
|
|
|
export default {
|
|
components: { Labels, Tab },
|
|
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
value: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Tab
|
|
name="labels"
|
|
label-key="generic.labelsAndAnnotations"
|
|
>
|
|
<Labels
|
|
v-model="value"
|
|
:mode="mode"
|
|
:display-side-by-side="false"
|
|
/>
|
|
</Tab>
|
|
</template>
|