vuex

    1熱度

    1回答

    的狀態突變Vuex方法是如下: const store = new Vuex.Store({ state: { fetching: false, board: null }, mutations: { setFething (state) { state.fetching = true }, setCurr

    0熱度

    1回答

    邏輯我不知道如何組織我的Vuex商店給出以下問題。 我有一個按鈕/操作數組,像100個。他們都在店裏像這樣的組織: buttons: [ { text: 'Button 1', doAction (store) {}, mustShow (store) { return state.variable > 10 && state.variable2

    1熱度

    1回答

    我試圖設置使用Vue的2.5.2和3.0.1 Vuex,我無法擺脫的唯一的應用程序是這樣的警告: [Vue warn]: Error in render: "TypeError: _vm.product is undefined" 產品只是和產品,儲存在剛剛創建的Vue實例後執行的下一行之後被填滿Vuex狀態的數組元素: vm.$store.dispatch('getProducts') 在我

    1熱度

    2回答

    我VUE成分是這樣的: <template> <ul class="nav nav-tabs nav-tabs-bg"> <li role="presentation"> <a :href="baseUrl+'/search/store/'+param"> Store </a> </li> </ul> </t

    0熱度

    1回答

    我目前做如下: <script> export default { computed: { editingItem: { get() { return this.$store.getters['editing/editingItem']; }, set(newValue) { this.$store.commit('

    0熱度

    1回答

    假設我需要對不同的API端點進行兩次異步調用。第二個電話的查詢參數取決於我從第一個 快速瀏覽收到: 第一個端點提供特定的順序有些IDS(按排名進行排序,例如) 二端點提供了一些 「元信息」 那些IDS 端點例子: GET /端點/一個 響應格式: [ { id: 1, rating: 0.67 }, { id: 2, ratin

    0熱度

    1回答

    我使用來自here和here的hackernews方法設置vuex和SSR,並且它都能正常工作。 app.js: // Expose a factory function that creates a fresh set of store, router, // app instances on each call (which is called for each SSR request)

    1熱度

    1回答

    import Vue from 'vue' import Vuex from 'vuex' import Users from './modules/Users' Vue.use(Vuex) export const store = new Vuex.Store({ namespaced: true, state: { foo: false,

    -1熱度

    1回答

    據我所知,在Vuex我們可以做store.subscribe,我們通過一個被稱爲在商店的每一個變化回調。 在我的應用程序中,我有一個有很多模塊的商店,並且想要subscribe只適用於特定的模塊,而不必擁有這種邏輯if (mutation.type != thisModule.type) return;。 是否可以只訂閱一些模塊? Could not find it in the docs。

    0熱度

    1回答

    我很新Vue。我有很多輸入的大型表格。我想將存儲在Vuex存儲中的所有數據作爲類的屬性。 const store = new Vuex.Store({ state: { cv: new CurriculumVitae() 我可以伊斯利更新這樣的價值觀: <input @input="updateValue" name="name"> ... methods: {