Skip to content

Commit

Permalink
fix(weex): default value for editor, fix vuejs#7165 (vuejs#7286)
Browse files Browse the repository at this point in the history
* fix(weex): default value for editor, fix vuejs#7165

/cc Hanks10100

* fix(weex): recycle-list test
  • Loading branch information
QingWei-Li authored and hefeng committed Jan 25, 2019
1 parent 6d95c9c commit e8df434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/weex/cases/recycle-list/components/editor.vue
Expand Up @@ -10,7 +10,7 @@
props: ['message'],
data () {
return {
output: this.message | ''
output: this.message || ''
}
}
}
Expand Down
Expand Up @@ -41,7 +41,7 @@
},
attr: {
type: 'text',
value: 0
value: 'No binding'
}
}]
}]
Expand Down

0 comments on commit e8df434

Please sign in to comment.