mirror of https://github.com/rancher/ui.git
13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
import { alias } from '@ember/object/computed';
|
|
import layout from './template';
|
|
import InputInteger from 'shared/components/input-integer/component';
|
|
|
|
export default InputInteger.extend({
|
|
layout,
|
|
|
|
classNames: ['form-control'],
|
|
|
|
max: alias('field.max'),
|
|
min: alias('field.min'),
|
|
});
|