[Vuejs]-Vuex-persist not updating vuex state

0👍

Turns out it was my mistake. Simple but overlooked. Since the variable chunkServerViewBluePrint is a list, in the mustations it should have been:

state.chunkServerViewBluePrint.columns[0] = columns
state.chunkServerViewBluePrint.rows[0] = rows

Leave a comment