Vue JS State Management with Pinia! | Pinia & Composition API Tutorial
Video Statistics and Information
Channel: Tyler Potts
Views: 4,895
Rating: undefined out of 5
Keywords: webdev, javascript, css, sass, scss, js, vuejs, vue, reactjs, website development, website design, app dev, app, app design, app development, mobile app, native, web developer, app developer, developer, programmer
Id: 3zI5MhFFPMA
Channel Id: undefined
Length: 23min 12sec (1392 seconds)
Published: Thu Jun 02 2022
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
Nice introduction to Pinia, thank you!
I had one comment, though: you sort of glossed-over the reason why vuex has actions and mutations whereas pinia only has actions (which, I gather from the vid, are the same as vuex mutations). You sort of said "pinia only needs mutations because they work great" or something like that, but the big difference in vuex is that actions are asynchronous and mutations are synchronous. What is different about pinia such that it doesn't offer/need asynchronous updates whereas vuex does?