Thanks for your time to create this vid. Having two small questions: - how about Vuex Actions (so we can use async - await e.g. to retrieve data) - how about Vuex Namespaces ? Thanks in advance for taking your time to reply.
Glad you enjoyed it! 1. You have the ablility to create those however you want. In the video I stuck to using the Vuex naming / format. So you can create a actions objects or do it inside of your methods. The option is up to you. 2. For name spacing, all this is doing is breaking up your state. You can simple create multiple files like I’ve done here, and I’m pretty sure you’d have the same use as those to a certain degree. However, I think if your at a point of using this. You’re store might be a little to large to want to use this. That’s just my opinion, as I think this is perfect for smaller projects / stores.