3

我正在尝试使用事件清除 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 = ''
    }
  }
}
4

1 回答 1

4

我试过了,但我不确定,但@keyup.enter使用 buefy 的唯一方法是:@keyup.native.enter

但是我认为你想要这样的东西:在行动中看到它

<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')
于 2018-06-04T21:27:02.977 回答