UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

23 lines (19 loc) 500 B
import { VuetifyWidgetModel } from './VuetifyWidget'; export class FormModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'FormModel', lazy_validation: null, value: null, }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-form'; } } FormModel.serializers = { ...VuetifyWidgetModel.serializers, };