ipyvuetify icon indicating copy to clipboard operation
ipyvuetify copied to clipboard

what is comm attribute in vue.Btn ? (not present in the corresponding vuetify element)

Open joseberlines opened this issue 4 years ago • 1 comments

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

joseberlines avatar Jan 11 '22 11:01 joseberlines

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.

mariobuikhuizen avatar Jan 11 '22 12:01 mariobuikhuizen