Состояние ReferenceError не определено в хранилище vuex - PullRequest
0 голосов
/ 16 октября 2018

Мой vuex магазин выглядит так, но при звонке addCustomer я получаю ReferenceError: state is not defined:

import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);

export default new Vuex.Store({
  state: { customers: [] },
  mutations: {
    addCustomer: function (customer) {
      state.customers.push(customer); // error is thrown here
    }
  }
});

Это addCustomer привязка / шаблон:

<template>
    <button class="button" @click="addCustomer">Add Customer</button>
</template>

Это определение для addCustomer:

<script>
  export default {
    name: "bootstrap",
    methods: {
      addCustomer: function() {
        const customer = {
          name: 'Some Name',
        };

        this.$store.commit('addCustomer', customer);
      }
    }
  }
</script>

1 Ответ

0 голосов
/ 16 октября 2018

Вам не хватает state в параметрах функции addCustomer (addCustomer: function (customer)):

     import Vue from 'vue';
     import Vuex from 'vuex';

     Vue.use(Vuex);

     export default new Vuex.Store({
       state: { customers: [] },
       mutations: {
         addCustomer: function (state,customer) {
           state.customers.push(customer); // error is thrown here
         }
       }
     });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...