]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: point to install
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 2 Aug 2021 12:56:14 +0000 (14:56 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 2 Aug 2021 13:10:07 +0000 (15:10 +0200)
docs/introduction.md

index 907ac524b482df06a8fd15379a6c13dc423f543a..7dc00a6b6e562712d11f342983f7b00a549488aa 100644 (file)
@@ -10,13 +10,16 @@ Pinia is a store library for Vue, it allows you to share a state across componen
   - A timeline to track actions, mutations
   - Stores appear in components where they are used
   - Time travel and easier debugging
+- Hot module replacement
+  - Modify your stores without reloading your page
+  - Keep any existing state while developing
 - Plugins: extend Pinia features with plugins
 - Proper TypeScript support or **autocompletion** for JS users
 - Server Side Rendering Support
 
 ## Basic example
 
-You start by creating a store:
+This is what using pinia looks like in terms of API (make sure to check the [Getting Started](./getting-started.md) for complete instructions). You start by creating a store:
 
 ```js
 // stores/counter.js