我声明了一个数组,想在数组里添加对象,通过push添加对象,但不知道为什么,每次添加完打印出来的数据,永远只有一项,达不到那种不停的加进去的效果,就想做成下图的效果。
import Vue from "vue"
import Vuex from "vuex"
// import persistedstate from "vuex-persistedstate"
Vue.use(Vuex)
let stores = new Vuex.Store({
state: [],
mutations: {
departureMutations(state, data) {
}
},
actions: {
departure(state, data) {
let arr = []
arr.push(data)
let obj = {}
let arr2 = []
arr.forEach((item,index)=>{
obj.evt = item.evt;
obj.stt = item.stt;
obj.action_time = item.action_time;
arr2.push(arr2)
})
console.log(arr2)
// localStorage.setItem("departure", JSON.stringify([...arr2]))
}
},
})
export default stores;
我尝试着循环遍历出每一项,加进一个新的数组里,但是这个新的数组也是这样
我希望能实现如下图效果
你这个地方写错了