Move submitDisable into data.

It's not a prop, these are only for passing data, not for local data.
This commit is contained in:
Roger Braun 2016-11-26 12:38:33 +01:00
parent cb940a8742
commit b812adf0ba
1 changed files with 2 additions and 3 deletions

View File

@ -23,14 +23,12 @@ const PostStatusForm = {
props: [
'replyTo',
'repliedUser',
'attentions',
'submitDisabled'
'attentions'
],
components: {
MediaUpload
},
data () {
this.submitDisabled = false
let statusText = ''
if (this.replyTo) {
@ -39,6 +37,7 @@ const PostStatusForm = {
}
return {
submitDisabled: false,
newStatus: {
status: statusText,
files: []