How to use the ipyvue.VueTemplate function in ipyvue

To help you get started, we’ve selected a few ipyvue examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mariobuikhuizen / ipyvuetify / ipyvuetify / VuetifyTemplate.py View on Github external
# 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 VueTemplate
from ._version import semver


class VuetifyTemplate(VueTemplate):

    _model_name = Unicode('VuetifyTemplateModel').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__ = ['VuetifyTemplate']

ipyvue

Jupyter widgets base for Vue libraries

MIT
Latest version published 23 days ago

Package Health Score

70 / 100
Full package analysis

Similar packages