Vue的文檔提到用「數據」選項上的構造,以保持全球/共享的數據: https://vuejs.org/v2/guide/state-management.html 這是有道理的。 Vuex文檔可以通過 「店」 的對象,沒有一個屬性名稱,但: https://github.com/vuejs/vuex/blob/dev/examples/counter/app.js new Vue({
e
我有以下設置,嘗試使用DELETE_NOTE突變從notes陣列中刪除activeNote。但它只會刪除數組的第一個元素。 的mutations.js是: export const mutations = {
DELETE_NOTE (state) {
console.log(state.activeNote) // here the activeNote is the cor