import solara
# reactive variables will trigger a component rerender
# when changed.
# When you change the default (now 0), hit the embedded browser
# refresh button to reset the state
clicks = solara.reactive(0)
@solara.component_vue("test.vue")
def Test():
...
@solara.component
def Page():
Test()