mirror of https://github.com/rancher/dashboard.git
42 lines
1.0 KiB
Vue
42 lines
1.0 KiB
Vue
<script>
|
|
import LabeledInput from '@/components/form/LabeledInput';
|
|
import { mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
components: { LabeledInput },
|
|
props: {
|
|
// volumeAttribtutes object
|
|
value: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
},
|
|
mode: {
|
|
type: String,
|
|
default: 'create'
|
|
}
|
|
},
|
|
|
|
computed: { ...mapGetters({ t: 'i18n/t' }) }
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="row mb-10">
|
|
<div class="col span-6">
|
|
<LabeledInput v-model="value.awsElasticBlockStore.volumeID" :mode="mode" :label="t('workload.storage.csi.volumeID')" />
|
|
</div>
|
|
<div class="col span-6">
|
|
<LabeledInput v-model.number="value.awsElasticBlockStore.parition" :mode="mode" :label="t('workload.storage.csi.partition')" />
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col span-6">
|
|
<LabeledInput v-model="value.awsElasticBlockStore.fsType" :mode="mode" :label="t('workload.storage.csi.fsType')" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|