jupyter-vuetify
Version:
Jupyter widgets based on vuetify UI components
28 lines (24 loc) • 672 B
JavaScript
import { VuetifyWidgetModel } from './VuetifyWidget';
export class ItemGroupModel extends VuetifyWidgetModel {
defaults() {
return {
...super.defaults(),
...{
_model_name: 'ItemGroupModel',
active_class: null,
dark: null,
light: null,
mandatory: null,
max: undefined,
multiple: null,
value: null,
},
};
}
getVueTag() { // eslint-disable-line class-methods-use-this
return 'v-item-group';
}
}
ItemGroupModel.serializers = {
...VuetifyWidgetModel.serializers,
};