13 lines
200 B
Python
13 lines
200 B
Python
|
from traitlets import Unicode
|
||
|
from .VueWidget import VueWidget
|
||
|
|
||
|
|
||
|
class Html(VueWidget):
|
||
|
|
||
|
_model_name = Unicode('HtmlModel').tag(sync=True)
|
||
|
|
||
|
tag = Unicode().tag(sync=True)
|
||
|
|
||
|
|
||
|
__all__ = ['Html']
|