We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d176af commit 6236d32Copy full SHA for 6236d32
demo-vue/app/views/Home.vue
@@ -4,7 +4,7 @@
4
<StackLayout>
5
<ListView ref="listView" for="example in examples" rowHeight="50" @itemTap="goToExample">
6
<v-template name="default">
7
- <StackLayout padding="10" class="item" orientation="horizontal">
+ <StackLayout padding="10" class="item" orientation="horizontal" @tap="goToExample({ item: example })">
8
<Label :text="example.name" fontSize="17" verticalAlignment="center" />
9
</StackLayout>
10
</v-template>
@@ -26,4 +26,4 @@ export default class Home extends Vue {
26
this.$navigateTo(item.component);
27
}
28
29
-</script>
+</script>
0 commit comments