You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
618 B

4 years ago
  1. # This subclass is needed to use VuetifyView instead of VueView so CSS workarounds for Vuetify are
  2. # added in the frontend.
  3. from traitlets import Unicode
  4. from ipyvue import Html as VueHtml
  5. from ._version import semver
  6. class Html(VueHtml):
  7. _model_name = Unicode('HtmlModel').tag(sync=True)
  8. _view_name = Unicode('VuetifyView').tag(sync=True)
  9. _view_module = Unicode('jupyter-vuetify').tag(sync=True)
  10. _model_module = Unicode('jupyter-vuetify').tag(sync=True)
  11. _view_module_version = Unicode(semver).tag(sync=True)
  12. _model_module_version = Unicode(semver).tag(sync=True)
  13. __all__ = ['Html']