UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

24 lines (20 loc) 511 B
import { VuetifyWidgetModel } from './VuetifyWidget'; export class AppModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'AppModel', dark: null, id: null, light: null, }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-app'; } } AppModel.serializers = { ...VuetifyWidgetModel.serializers, };