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

# This subclass is needed to use VuetifyView instead of VueView so CSS workarounds for Vuetify are
# added in the frontend.
from traitlets import Unicode
from ipyvue import Html as VueHtml
from ._version import semver
class Html(VueHtml):
_model_name = Unicode('HtmlModel').tag(sync=True)
_view_name = Unicode('VuetifyView').tag(sync=True)
_view_module = Unicode('jupyter-vuetify').tag(sync=True)
_model_module = Unicode('jupyter-vuetify').tag(sync=True)
_view_module_version = Unicode(semver).tag(sync=True)
_model_module_version = Unicode(semver).tag(sync=True)
__all__ = ['Html']