UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

21 lines (17 loc) 461 B
import { VuetifyWidgetModel } from './VuetifyWidget'; export class CardActionsModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'CardActionsModel', }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-card-actions'; } } CardActionsModel.serializers = { ...VuetifyWidgetModel.serializers, };