ipyvuetify
ipyvuetify copied to clipboard
what is comm attribute in vue.Btn ? (not present in the corresponding vuetify element)
When doing:
import ipyvuetify as vue
print(vue.Btn)
You get an atribute called comm. Such attribute is not part of vuetify button: https://vuetifyjs.com/en/api/v-btn/#props
What is that attribute for? is that a simple comment?
thanks
It's an inherited property of the Widget class from ipywidgets where ipyvuetify is based on: https://github.com/jupyter-widgets/ipywidgets/blob/32f59acbc63c3ff0acf6afa86399cb563d3a9a86/python/ipywidgets/ipywidgets/widgets/widget.py#L412. It's part of the internals of ipywidgets.