2021-10-17 18:26:00 +02:00
|
|
|
---
|
2022-09-29 19:03:02 +02:00
|
|
|
title: Store
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-09-29 23:03:28 +02:00
|
|
|
A **Store** object holds a simple key/value store with methods for storing and
|
2024-01-21 11:16:40 -08:00
|
|
|
retrieving data. It is shared across the pattern, and is the recommended way
|
2023-10-21 14:48:06 +02:00
|
|
|
to pass data between your parts.
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2023-10-21 14:48:06 +02:00
|
|
|
## Methods and Properties
|
2022-09-29 23:03:28 +02:00
|
|
|
|
2022-12-09 07:34:44 -08:00
|
|
|
A Store object exposes the following methods and properties:
|
2022-09-29 23:03:28 +02:00
|
|
|
|
2023-10-21 14:48:06 +02:00
|
|
|
<ReadMore recurse />
|
2022-12-09 07:34:44 -08:00
|
|
|
|
2024-02-07 07:32:13 -08:00
|
|
|
## Extended store methods
|
|
|
|
|
|
|
|
The store can also be extended with additional methods by plugins.
|
|
|
|
|
|
|
|
- Refer to [the Store Methods documentation](/reference/store-methods)
|
|
|
|
for more information and a list of store methods maintained by FreeSewing.
|
|
|
|
- Refer to [the Plugin guide](/guides/plugins) for information about how
|
|
|
|
plugins can be used to provide store methods.
|