]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
... or session storage (#1125)
authorJonathan <vanillajonathan@users.noreply.github.com>
Wed, 9 Mar 2022 14:23:50 +0000 (15:23 +0100)
committerGitHub <noreply@github.com>
Wed, 9 Mar 2022 14:23:50 +0000 (15:23 +0100)
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
packages/docs/core-concepts/plugins.md

index ea22a043923260e9ebefe1f030705b6a54e3e55a..16927fb128744c76909f418681a9d59e9f7ae910 100644 (file)
@@ -7,7 +7,7 @@ Pinia stores can be fully extended thanks to a low level API. Here is a list of
 - Add new methods to stores
 - Wrap existing methods
 - Change or even cancel actions
-- Implement side effects like local storage
+- Implement side effects like [Local Storage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)
 - Apply **only** to specific stores
 
 Plugins are added to the pinia instance with `pinia.use()`. The simplest example is adding a static property to all stores by returning an object: