this fixes #350 - v-model binding issue

このコミットが含まれているのは:
Xiaofeng An 2019-02-12 13:55:00 -05:00
コミット 64fab9d7bc
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -126,6 +126,7 @@ const AutoCompleteInput = {
const candidate = this.candidates[this.highlighted]
const replacement = candidate.utf || (candidate.screen_name + ' ')
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement)
this.$emit('input', this.text)
const el = this.$el.querySelector('textarea') || this.$el.querySelector('input')
el.focus()
this.caret = 0