我试图用事件清除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 = ''
}
}
}
答案 0 :(得分:4)
我试过了,我不确定但使用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')