5

我目前正在研究 Vuetify,尝试Vue.js使用 HTML 从 v-select 调用一个方法。但是@change 事件没有正确选择条件。

<v-layout row wrap>
    <v-flex xs12 sm4>
      <!-- DropDown Combo -->
      <v-select v-model="selected"
        :items='dropdown_tables'
        append-icon='fa-angle-down'
        label='Select'
        persistent-hint
        return-object
        single-line
        @change='RefreshGrid'
        target='#dropdown'>
        </v-select>
        <!-- <p> {{`${selected}`}} </p> // this code gives the selected combo text -->
    </v-flex>
   </v-layout>
</v-container>

我的 Javascript 函数

 methods: {
   RefreshGrid: function () {
   let cName;
   if (this.selected === 'Business Area') {
    cName = 'businessArea';
   } else if (this.selected === 'Council') {
     cName = 'council';
   }
   let obj = {
    vm: this,
    collectionName: cName,
    action: 'masterData/setMasterData',
    mutation: 'setMasterData'
   };
   this.$store.dispatch(obj.action, obj);
 }

因此,当我使用更改并单击委员会时,它会在网格中显示 businessArea 数据,反之亦然。试图弄清楚 v-select 的索引是如何工作的。

4

1 回答 1

15

因此,使用@input代替@change工作正常。

于 2018-07-03T15:28:44.700 回答