Juan de Dios Martínez Vallejo
Juan de Dios Martínez Vallejo
An easy way to replicate this problem is to add 2 times the `class` property to an element. Even now when I add 2 times this gets stuck and at...
@mreall Is supported! Change v-template by template. Example https://github.com/nativescript-vue/nativescript-vue/blob/main/packages/template-blank/src/components/Details.vue
@rigor789 I don't know why but if you comment on this line it appears that there is a client connected https://github.com/nativescript-vue/nativescript-vue/blob/1d1a1540402d16f5097e2607cf9e91133af52829/devtools.js#L22
@minhnhut https://docs.nativescript.org/core/application#cross-platform-application-events ```ts import { Application, ApplicationEventData } from '@nativescript/core' Application.on('displayed', (args: ApplicationEventData) => { // handle the event }) ```
@ignacio68 I'll try again, thanks!
@segevfiner I think the same, I think this should be in the templates
you can directly call handleRetrieve ```js this.$refs.btnRetrieve.$emit('toque') to handleRetrieve() ```
hello! I think I expressed myself wrong. I meant that you don't need to call tap, you can directly call the function you want to execute with tap. I mean...
@rigor789 I think it's good that I don't add it, but then the problem is the documentation, right? Could you send a pr to change `event.item` to `event.index`
@stinis87 you need register the plugins in your app.ts. ```ts import TabsPlugin from '@nativescript-community/ui-material-tabs/vue'; import {BottomSheetPlugin} from "@nativescript-community/ui-material-bottomsheet/vue3"; const app = createApp(App); app.use(TabsPlugin) app.use(BottomSheetPlugin) app.start(); ```