<GridLayout columns="auto, *" rows="*" @tap="openDrawer">
<Label text="Edit" @tap.native="goToEdit" col="1"></Label>
</GridLayout>
Generally, in vue.js we use .native postfix to call native child component event. I am having a problem with ".native" in native-script-vue. If I use an event without ".native" postfix both parent and child event are triggering. I want to only Trigger child element.