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.

12 lines
200 B

4 years ago
  1. from traitlets import Unicode
  2. from .VueWidget import VueWidget
  3. class Html(VueWidget):
  4. _model_name = Unicode('HtmlModel').tag(sync=True)
  5. tag = Unicode().tag(sync=True)
  6. __all__ = ['Html']