genesis-stack 1.0.7 → 1.0.8
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 -1
- package/package.json +1 -1
- package/stacks/pieces/vue.md +10 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ the established project operations.
|
|
|
29
29
|
|
|
30
30
|
The package contains static Markdown declarations only and has no framework
|
|
31
31
|
dependencies. Genesis reads its manifest and Stack pieces; it never imports or
|
|
32
|
-
executes catalog code. Framework pieces such as JSKIT link to their
|
|
32
|
+
executes catalog code. Framework pieces such as JSKIT and Vue link to their
|
|
33
33
|
authoritative documentation in ordinary Stack guidance.
|
|
34
34
|
|
|
35
35
|
Genesis still supports optional Agent Skills generically. A Stack piece from
|
package/package.json
CHANGED
package/stacks/pieces/vue.md
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Description
|
|
4
4
|
|
|
5
|
-
Vue component, reactive state, resource hydration, routing, and screen-state
|
|
5
|
+
Vue component, reactive state, resource hydration, routing, and screen-state
|
|
6
|
+
conventions. Authoritative framework documentation: https://vuejs.org/
|
|
6
7
|
|
|
7
8
|
## Requires
|
|
8
9
|
|
|
@@ -10,6 +11,14 @@ Vue component, reactive state, resource hydration, routing, and screen-state con
|
|
|
10
11
|
|
|
11
12
|
## Guidance
|
|
12
13
|
|
|
14
|
+
- Read the authoritative Vue documentation index at `https://vuejs.org/` and
|
|
15
|
+
match the installed Vue major version. For Vue 3, read only the Guide pages
|
|
16
|
+
needed by the change from `https://vuejs.org/guide/` and the exact API entries
|
|
17
|
+
needed from `https://vuejs.org/api/`. For Vue 2 or migration work, follow the
|
|
18
|
+
official version or migration link from the documentation index. Preserve the
|
|
19
|
+
project's established Options API or Composition API style and do not turn a
|
|
20
|
+
focused change into a framework migration or broad ecosystem survey.
|
|
21
|
+
|
|
13
22
|
### Reactive state hydration
|
|
14
23
|
|
|
15
24
|
- Cached query/resource data and route state may already exist when a component is created. Never rely on a default lazy `watch()` to initialize writable UI state.
|