You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -107,7 +107,7 @@ A few notes about the project and possible questions:
107
107
108
108
**Q**: _What about dynamic modules?_
109
109
110
-
**A**: Dynamic modules are not type safe, so instead [we allow creating different stores](https://pinia.esm.dev/cookbook/composing-stores.html) that can be imported anywhere
110
+
**A**: Dynamic modules are not type safe, so instead [we allow creating different stores](https://pinia.vuejs.org/cookbook/composing-stores.html) that can be imported anywhere
This release correctly removes the deprecated APIs as advertised in v2. The [documentation](https://pinia.esm.dev/cookbook/migration-v1-v2.html) contains a list of all the deprecations compared to v0.x.
51
+
This release correctly removes the deprecated APIs as advertised in v2. The [documentation](https://pinia.vuejs.org/cookbook/migration-v1-v2.html) contains a list of all the deprecations compared to v0.x.
52
52
53
53
### Bug Fixes
54
54
@@ -237,7 +237,7 @@ It contains major improvements:
237
237
238
238
- Performance: Pinia now uses `effectScope()`, effectively reducing memory consumption and removing the drawbacks mentioned in the Plugin section about `useStore()` creating multiple store instances (still sharing the state).
239
239
- Devtools: Many improvements over the information displayed in devtools as well as a few bugfixes
240
-
- HMR (Hot Module Replacement): You can now modify your stores without reloading the page and losing the state, making development much easier. Until 3.2.0 (stable) is released, you can find an example [in the playground](https://github.com/vuejs/pinia/blob/2b98eafe441ea7e9a3ff3cef122c24eb5fa03f1d/playground/src/stores/counter.ts#L66-L68). After that, you can read up to date instructions [in the documentation](https://pinia.esm.dev/cookbook/hot-module-replacement.html).
240
+
- HMR (Hot Module Replacement): You can now modify your stores without reloading the page and losing the state, making development much easier. Until 3.2.0 (stable) is released, you can find an example [in the playground](https://github.com/vuejs/pinia/blob/2b98eafe441ea7e9a3ff3cef122c24eb5fa03f1d/playground/src/stores/counter.ts#L66-L68). After that, you can read up to date instructions [in the documentation](https://pinia.vuejs.org/cookbook/hot-module-replacement.html).
241
241
- Setup syntax: You can now define stores with a function instead of options. This enables more complex patterns. See an example [in the playground](https://github.com/vuejs/pinia/blob/75f1fe6aa4ef2629ae1c9840a2d4542ac6e62686/playground/src/stores/jokes-swrv.ts). Setup Stores are unable to group actions like Option Stores due to their very permissive syntax.
242
242
- Option syntax: we can now pass the `id` as the first parameter. This syntax is preferred over the object syntax to be consistent with the Setup syntax.
243
243
@@ -424,7 +424,7 @@ It contains major improvements:
424
424
})
425
425
```
426
426
427
-
For more information, refer to [the updated documentation for getters](https://pinia.esm.dev/core-concepts/getters.html).
427
+
For more information, refer to [the updated documentation for getters](https://pinia.vuejs.org/core-concepts/getters.html).
428
428
429
429
-**plugins:** To improve the plugin api capabilities, `pinia.use()`
430
430
now receives a context object instead of just `app`:
@@ -436,7 +436,7 @@ It contains major improvements:
436
436
pinia.use(({ app }) => {})
437
437
```
438
438
439
-
Check the new documentation for [Plugins](https://pinia.esm.dev/core-concepts/plugins.html)!
439
+
Check the new documentation for [Plugins](https://pinia.vuejs.org/core-concepts/plugins.html)!
0 commit comments