Skip to content

Commit e055df8

Browse files
QingWei-Liyyx990803
authored andcommitted
fix(weex): default value for editor, fix #7165 (#7286)
* fix(weex): default value for editor, fix #7165 /cc Hanks10100 * fix(weex): recycle-list test
1 parent 7cc0b55 commit e055df8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/weex/cases/recycle-list/components/editor.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
props: ['message'],
1111
data () {
1212
return {
13-
output: this.message | ''
13+
output: this.message || ''
1414
}
1515
}
1616
}

test/weex/cases/recycle-list/components/stateful-v-model.vdom.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
attr: {
4343
type: 'text',
44-
value: 0
44+
value: 'No binding'
4545
}
4646
}]
4747
}]

0 commit comments

Comments
 (0)