compmark-vue 0.3.0 → 0.3.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 +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,21 @@
|
|
|
9
9
|
|
|
10
10
|
Auto-generate Markdown documentation from Vue 3 SFCs. Zero configuration required.
|
|
11
11
|
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
# npm
|
|
16
|
+
npm install -D compmark-vue
|
|
17
|
+
|
|
18
|
+
# pnpm
|
|
19
|
+
pnpm add -D compmark-vue
|
|
20
|
+
|
|
21
|
+
# yarn
|
|
22
|
+
yarn add -D compmark-vue
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
> Requires Node.js >= 20
|
|
26
|
+
|
|
12
27
|
## Quick Start
|
|
13
28
|
|
|
14
29
|
Document a single component:
|