mirror of https://github.com/rancher/dashboard.git
55 lines
1018 B
Vue
55 lines
1018 B
Vue
<script>
|
|
import KeyValue from '@/components/form/KeyValue';
|
|
|
|
export default {
|
|
components: { KeyValue },
|
|
|
|
props: {
|
|
spec: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
mode: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
created() {
|
|
if ( !this.spec.metadata ) {
|
|
this.$set(this.spec, 'metadata', {});
|
|
}
|
|
|
|
if ( !this.spec.annotations ) {
|
|
this.$set(this.spec, 'annotations', {});
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<div class="row">
|
|
<KeyValue
|
|
key="labels"
|
|
v-model="spec.metadata.labels"
|
|
:mode="mode"
|
|
title="Labels"
|
|
:initial-empty-row="true"
|
|
:pad-left="false"
|
|
:read-allowed="false"
|
|
/>
|
|
</div>
|
|
<div class="row">
|
|
<KeyValue
|
|
key="annotations"
|
|
v-model="spec.metadata.annotations"
|
|
:mode="mode"
|
|
title="Annotations"
|
|
:initial-empty-row="true"
|
|
:pad-left="false"
|
|
:read-allowed="false"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|