]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: plugins must be applied before creating stores
authorEduardo San Martin Morote <posva13@gmail.com>
Sat, 3 Dec 2022 13:44:37 +0000 (14:44 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Sat, 3 Dec 2022 13:44:37 +0000 (14:44 +0100)
Close #1841

packages/docs/core-concepts/plugins.md

index f8e46d3c28e5a44fba17d89019050afc18c04391..010fb16f7fa60be353c349593cfca1df9b7c7506 100644 (file)
@@ -52,7 +52,7 @@ This function is then passed to `pinia` with `pinia.use()`:
 pinia.use(myPiniaPlugin)
 ```
 
-Plugins are only applied to stores **created after `pinia` is passed to the app**, otherwise they won't be applied.
+Plugins are only applied to stores created **after the plugins themselves, and after `pinia` is passed to the app**, otherwise they won't be applied.
 
 ## Augmenting a Store