@vue-modeler/model 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ Try it out! Level up your development process.
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
### Key Features
|
|
12
|
+
|
|
12
13
|
- **No global state store**. No store means no problems. State is encapsulated within the model and is reactive. Outside the model, it's only accessible for reading and observation.
|
|
13
14
|
- **Extremely simple API**: A model prototype is a standard class, actions are defined as standard methods with decorators. Create a model by calling a factory method — nothing more needed. Reactive properties and behavior are defined using the standard Vue API.
|
|
14
15
|
- **Supports shared models**. A built-in model container ensures that a model remains in memory while being used. Unused models are automatically removed from the container.
|
|
@@ -19,11 +20,6 @@ Try it out! Level up your development process.
|
|
|
19
20
|
|
|
20
21
|
---
|
|
21
22
|
|
|
22
|
-
### Simple Example
|
|
23
|
-
%%Check how it's done here: [https://pinia.vuejs.org/introduction.html#Basic-example%%](https://pinia.vuejs.org/introduction.html#Basic-example%%)
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
23
|
### Goals of Creation
|
|
28
24
|
|
|
29
25
|
#### **Eliminate boilerplate code in actions and reduce the codebase.**
|