<template>
<Page>
<ActionBar title="App"/>
<ListView for="x in myList" @itemTap='detail' >
<v-template>
<StackLayout orientation='horizontal' >
<Label :text="x.id" />
<Label :text="x.topic" />
</StackLayout>
</v-template>
</ListView>
<Button text="Click me" />
</Page>
</template>