Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions getting-started-vue/05.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,11 @@ At the end of this lesson, your `<template>` and `<script>` blocks should resemb
<TextField row="1" ref="taskInput"
v-model="textFieldValue" hint="Enter text..."
returnKeyType="done" @returnPress="onReturnPress" />
<ListView row="2" class="list-group" for="todo in todos"
@itemTap="onItemTap">
<ListView row="2" class="list-group" for="todo in todos">
<v-template>
<GridLayout columns="auto, *">
<Label col="0" text=" " />
<Label col="1" :text="todo.name"
<Label col="0" @tap="onTodoCircleTap(todo)" text=" " />
<Label col="1" @tap="onTodoItemTap(todo)" :text="todo.name"
textWrap="true" />
</GridLayout>
</v-template>
Expand Down