Skip to content

Commit d41df82

Browse files
committed
style: update formatting
1 parent ef048f4 commit d41df82

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

samples/app/220.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Vue.config.silent = false
66
const CompButton = {
77
template: `
88
<Button @tap="counter++">{{label}}: {{counter}}</Button>
9-
`,
9+
`,
1010
name: 'CompButton',
1111
props: ['label'],
1212
data() {
@@ -24,13 +24,11 @@ new Vue({
2424
<Frame>
2525
<Page>
2626
<ActionBar title="Issue #127" />
27-
2827
<StackLayout>
2928
<Button @tap="counter++">{{counter}}</Button>
30-
3129
<keep-alive>
32-
<CompButton v-if="counter % 2" key="odd" label="Odd"></CompButton>
33-
<CompButton v-else key="even" label="Even"></CompButton>
30+
<CompButton v-if="counter % 2" key="odd" label="Odd" />
31+
<CompButton v-else key="even" label="Even" />
3432
</keep-alive>
3533
</StackLayout>
3634
</Page>

0 commit comments

Comments
 (0)