[Vuejs]-Using Vuex stores across multiple files with WebPack

0👍

Posting this for posterity. The issue was the files were separate, meaning there were two separate instances of the store in two different files that are completely isolated from each other, which is why updating the state in one file did not effect the other. Case closed.

Leave a comment