如何在事件发生后清除 Buefy 输入(VueJS)?
How to clear Buefy input after event (VueJS)?
我正在尝试通过事件清除 Buefy 输入,但没有任何反应。但是,此代码适用于基本输入。
这是我的HTML:
<b-field>
<b-input
id="itemForm"
placeholder="label"
@keyup.enter.native="addItem">
</b-input>
</b-field>
这是我的脚本:
methods: {
addItem () {
var input = document.getElementById('itemForm')
if (input.value !== '') {
this.items.push({
name: input.value
})
input.value = ''
}
}
}
我试过了,但我不确定但是使用 buefy @keyup.enter
的唯一方法是:@keyup.native.enter
但是我认为你想要这样的东西:see it in action
<div id="app" class="container">
<ul>
<li v-for="section in sections" :key="section.id">
{{section.name}}
</li>
</ul>
<section >
<b-field label="Name">
<b-input v-model.trim="name" @keyup.native.enter="addItem()" placeholder="Write and press enter"></b-input>
</b-field>
</section>
</div>
和脚本:
Vue.use(Buefy.default)
const example = {
data() {
return {
sections: [],
name: ''
}
},
methods: {
addItem () {
this.sections.push({
name: this.name,
id: Date.now()
})
this.name = ''
}
}
}
const app = new Vue(example)
app.$mount('#app')
我正在尝试通过事件清除 Buefy 输入,但没有任何反应。但是,此代码适用于基本输入。
这是我的HTML:
<b-field>
<b-input
id="itemForm"
placeholder="label"
@keyup.enter.native="addItem">
</b-input>
</b-field>
这是我的脚本:
methods: {
addItem () {
var input = document.getElementById('itemForm')
if (input.value !== '') {
this.items.push({
name: input.value
})
input.value = ''
}
}
}
我试过了,但我不确定但是使用 buefy @keyup.enter
的唯一方法是:@keyup.native.enter
但是我认为你想要这样的东西:see it in action
<div id="app" class="container">
<ul>
<li v-for="section in sections" :key="section.id">
{{section.name}}
</li>
</ul>
<section >
<b-field label="Name">
<b-input v-model.trim="name" @keyup.native.enter="addItem()" placeholder="Write and press enter"></b-input>
</b-field>
</section>
</div>
和脚本:
Vue.use(Buefy.default)
const example = {
data() {
return {
sections: [],
name: ''
}
},
methods: {
addItem () {
this.sections.push({
name: this.name,
id: Date.now()
})
this.name = ''
}
}
}
const app = new Vue(example)
app.$mount('#app')