jupyter-vuetify
Version:
Jupyter widgets based on vuetify UI components
29 lines (25 loc) • 693 B
JavaScript
import { VuetifyWidgetModel } from './VuetifyWidget';
export class PickerModel extends VuetifyWidgetModel {
defaults() {
return {
...super.defaults(),
...{
_model_name: 'PickerModel',
color: null,
dark: null,
full_width: null,
landscape: null,
light: null,
no_title: null,
transition: null,
width: undefined,
},
};
}
getVueTag() { // eslint-disable-line class-methods-use-this
return 'v-picker';
}
}
PickerModel.serializers = {
...VuetifyWidgetModel.serializers,
};