resolve issue in prop binding

This commit is contained in:
Xiaofeng An 2019-02-13 07:38:13 -05:00
parent d6f9f34ad8
commit 2100cb247d
2 changed files with 8 additions and 10 deletions

View file

@ -24,8 +24,7 @@ const AutoCompleteInput = {
data () { data () {
return { return {
caret: 0, caret: 0,
highlighted: 0, highlighted: 0
text: this.value
} }
}, },
computed: { computed: {
@ -42,7 +41,7 @@ const AutoCompleteInput = {
return (this.wordAtCaret || {}).word || '' return (this.wordAtCaret || {}).word || ''
}, },
wordAtCaret () { wordAtCaret () {
const word = Completion.wordAtPosition(this.text, this.caret - 1) || {} const word = Completion.wordAtPosition(this.value, this.caret - 1) || {}
return word return word
}, },
candidates () { candidates () {
@ -113,7 +112,7 @@ const AutoCompleteInput = {
} }
}, },
replace (replacement) { replace (replacement) {
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement) this.$emit('input', Completion.replaceWord(this.value, this.wordAtCaret, replacement))
const el = this.$el.querySelector('textarea') const el = this.$el.querySelector('textarea')
el.focus() el.focus()
this.caret = 0 this.caret = 0
@ -125,8 +124,7 @@ const AutoCompleteInput = {
e.preventDefault() e.preventDefault()
const candidate = this.candidates[this.highlighted] const candidate = this.candidates[this.highlighted]
const replacement = candidate.utf || (candidate.screen_name + ' ') const replacement = candidate.utf || (candidate.screen_name + ' ')
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement) this.$emit('input', Completion.replaceWord(this.value, this.wordAtCaret, replacement))
this.$emit('input', this.text)
const el = this.$el.querySelector('textarea') || this.$el.querySelector('input') const el = this.$el.querySelector('textarea') || this.$el.querySelector('input')
el.focus() el.focus()
this.caret = 0 this.caret = 0

View file

@ -4,8 +4,8 @@
v-if="multiline" v-if="multiline"
ref="textarea" ref="textarea"
rows="1" rows="1"
:value="text" :class="classObj" :id="id" :placeholder="placeholder" :value="value" :class="classObj" :id="id" :placeholder="placeholder"
@input="text = $event.target.value, $emit('input', $event.target.value), autoResize && resize($event)" @input="$emit('input', $event.target.value), autoResize && resize($event)"
@click="setCaret" @click="setCaret"
@keyup="setCaret" @keyup="setCaret"
@keydown.down="cycleForward" @keydown.down="cycleForward"
@ -22,8 +22,8 @@
<input <input
v-else v-else
ref="textarea" ref="textarea"
:value="text" :class="classObj" :id="id" :placeholder="placeholder" :value="value" :class="classObj" :id="id" :placeholder="placeholder"
@input="text = $event.target.value, $emit('input', $event.target.value), autoResize && resize($event)" @input="$emit('input', $event.target.value), autoResize && resize($event)"
@click="setCaret" @click="setCaret"
@keyup="setCaret" @keyup="setCaret"
@keydown.down="cycleForward" @keydown.down="cycleForward"