1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

Add content for pinia

This commit is contained in:
Marcus Vinicius Gomes
2022-08-03 13:02:46 -03:00
committed by GitHub
parent 0295fffcc4
commit f9eabaca99

View File

@@ -0,0 +1,6 @@
# Pinia
Pinia is a store library for Vue.js, and can be used in Vue 2 and Vue 3, with the same API, except in SSR and its installation. It allows state sharing between pages and components around the application. As the documentation says, it is extensible, intuitive (by organization), has devtools support (in Vue.js devtools), inferred typed state even in javascript and more. In Pinia you can access, mutate, replace, use getters that works like computed, use actions, etc. The library is recommended by the official Vue.js documentation.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://pinia.vuejs.org/'>Official Documentation</BadgeLink>