mirror of https://github.com/rancher/ui.git
15 lines
311 B
JavaScript
15 lines
311 B
JavaScript
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import VolumeSource from 'shared/mixins/volume-source';
|
|
|
|
export default Component.extend(VolumeSource, {
|
|
layout,
|
|
field: 'azureDisk',
|
|
|
|
initValue: {
|
|
readOnly: false,
|
|
cachingMode: 'None',
|
|
kind: 'Shared'
|
|
}
|
|
});
|