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 eb60aee commit fb1d8c6Copy full SHA for fb1d8c6
samples/app/app-with-v-template.js
@@ -31,25 +31,25 @@ new Vue({
31
},
32
template: `
33
<Page>
34
- <StackLayout>
+ <GridLayout>
35
<list-view for="line in items">
36
<v-template>
37
<StackLayout style="padding: 50;">
38
<Label :text="line" style="color: blue;"/>
39
</StackLayout>
40
</v-template>
41
- <v-template if="line.value.length == 2">
+ <v-template if="line.length == 2">
42
43
<Label :text="line" style="color: green;"/>
44
45
46
- <v-template if="line.odd">
+ <v-template if="$odd">
47
48
<Label :text="line" style="color: red;"/>
49
50
51
</list-view>
52
- </StackLayout>
+ </GridLayout>
53
</Page>
54
`
55
}).$start()
0 commit comments