[v6][smartSelect][vue] Obtaining Smart Select Instance in v6

Looking at v5 documentation it states:

You can access Smart Select initialized instance by accessing .f7SmartSelect property of <f7-list-item> component.

I’ve seen implementations use the ref-"" attribute and the $refs, which I prefer.

However it seems like in v6 vue this is no longer available.

Is there an alternative way? I’ve been using f7.smartSelect.get("#smartselectitem .smart-select").getValue() but it doesn’t seem as tidy as v5?

Thanks in advance.

No refs really in F7 v6, because it uses new Vue 3’s functional components with composition API. So the way you do it is the correct way