0

我有一个如下所示的 V-select,当我加载页面时,它会填充来自我的 Vuex 商店的数据。然后我有一个计算属性来获取当前选择的公司。我的问题是当前选择的公司的价值只有在我点击两次后才会更新。我在实施中做错了吗?

因此,当用户更改 V-select 中的值时,我想更新正在显示的用户列表,但这仅在用户单击 v-select 选择两次时才有效。

<template>
  <v-container fluid fill-height>
    <v-layout child-flex>
      <v-card>
        <v-card-title>
          <h3>Användare</h3>
          <v-spacer></v-spacer>
            <v-select
              v-bind:items="listOfCompanys"
              v-model="selectedCompany"
              item-value="customerid"
              item-text="name"
              single-line
              bottom
              v-on:change="onChangeCompany"
              autocomplete></v-select>
        </v-card-title>
      <UserTable></UserTable>
    </v-card>
  </v-layout>
  </v-container>
</template>

  <script>
  import { FETCH_COMPANY_LIST, FETCH_USER_LIST } from '../store/actions.type'

  import UserTable from './UserTable.vue'
  export default {
    name: 'Users',
    data: () => ({
      selectedCompany: 0
    }),
    components: {
      UserTable
    },
    methods: {
      onChangeCompany () {
        this.$store.dispatch(FETCH_USER_LIST, this.currentCompany)
      }
    },
    mounted: function () {
      this.$store.dispatch(FETCH_COMPANY_LIST)
    },
    computed: {
      listOfCompanys () {
        return this.$store.state.users.companyList
      },
      currentCompany () {
        return this.selectedCompany
      }
    }
  }
  </script>
4

1 回答 1

0

不要同时使用v-modelv-on:change。你正在发送this.currentCompany,我认为应该是selectedCompany。如果想法是在值更改时发送值,请将 awatch放在值上,而不是小部件上。小部件提供价值,价值提供商店。

于 2018-03-01T23:10:07.050 回答