We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ipyvuetify widgets do no render in the vuetify-base template when there is a VBox in between.
The following code snippets show what does render, and what does not (Note that they all render in the classical notebook):
import ipyvuetify as v import ipywidgets as widgets v.Container(children=[ v.Btn(children=['does']), v.Btn(children=['work']), ], _metadata={'mount_id': 'content'})
import ipyvuetify as v import ipywidgets as widgets v.Container(children=[ widgets.VBox(children=[ v.Btn(children=['does not']), v.Btn(children=['work']), ]) ], _metadata={'mount_id': 'content'})
import ipyvuetify as v import ipywidgets as widgets v.Container(children=[ widgets.VBox(children=[ v.Container(children=[ v.Btn(children=['also does not']), v.Btn(children=['work']), ]) ]) ], _metadata={'mount_id': 'content'})
import ipyvuetify as v import ipywidgets as widgets v.Container(children=[ widgets.VBox(children=[ widgets.Button(description='but this does'), widgets.Button(description='work'), ]) ], _metadata={'mount_id': 'content'})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
ipyvuetify widgets do no render in the vuetify-base template when there is a VBox in between.
Reproduce
The following code snippets show what does render, and what does not (Note that they all render in the classical notebook):
direct child of a vuetify container
vbox in between
vbox + container in between
non-ipyvuetify as leaf nodes:
The text was updated successfully, but these errors were encountered: