@vue-pivottable/nuxt 0.1.0 → 0.2.0
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 +13 -13
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -18,18 +18,18 @@ Nuxt is built on Vue, so each Nuxt version corresponds to a specific Vue version
|
|
|
18
18
|
### Nuxt 3 (Vue 3)
|
|
19
19
|
|
|
20
20
|
**VuePivottable** - Direct pivot table rendering
|
|
21
|
-

|
|
22
22
|
|
|
23
23
|
**VuePivottableUi** - Interactive pivot table with drag-and-drop UI
|
|
24
|
-

|
|
25
25
|
|
|
26
26
|
### Nuxt 2 (Vue 2)
|
|
27
27
|
|
|
28
28
|
**VuePivottable** - Direct pivot table rendering (with Totals)
|
|
29
|
-

|
|
30
30
|
|
|
31
31
|
**VuePivottableUi** - Interactive pivot table with drag-and-drop UI
|
|
32
|
-

|
|
33
33
|
|
|
34
34
|
## Installation
|
|
35
35
|
|
|
@@ -145,23 +145,23 @@ This module automatically handles SSR by loading components only on the client s
|
|
|
145
145
|
|
|
146
146
|
## Examples
|
|
147
147
|
|
|
148
|
-
See the [
|
|
148
|
+
See the [examples](./examples) directory for complete working examples:
|
|
149
149
|
|
|
150
|
-
- `
|
|
151
|
-
- `
|
|
150
|
+
- `examples/nuxt3` - Nuxt 3 example
|
|
151
|
+
- `examples/nuxt2` - Nuxt 2 example
|
|
152
152
|
|
|
153
153
|
To run the examples:
|
|
154
154
|
|
|
155
155
|
```bash
|
|
156
156
|
# Nuxt 3
|
|
157
|
-
cd
|
|
158
|
-
|
|
159
|
-
|
|
157
|
+
cd examples/nuxt3
|
|
158
|
+
pnpm install
|
|
159
|
+
pnpm run dev
|
|
160
160
|
|
|
161
161
|
# Nuxt 2
|
|
162
|
-
cd
|
|
163
|
-
|
|
164
|
-
|
|
162
|
+
cd examples/nuxt2
|
|
163
|
+
pnpm install
|
|
164
|
+
pnpm run dev
|
|
165
165
|
```
|
|
166
166
|
|
|
167
167
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-pivottable/nuxt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Nuxt module for vue-pivottable (Nuxt 2/3 compatible)",
|
|
5
5
|
"author": "Seungwoo321",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@nuxt/kit": "^3.9.0",
|
|
45
45
|
"@nuxt/schema": "^3.9.0",
|
|
46
|
-
"release-it": "^
|
|
46
|
+
"@release-it/conventional-changelog": "^10.0.4",
|
|
47
|
+
"release-it": "^19.2.3",
|
|
47
48
|
"typescript": "^5.0.0",
|
|
48
49
|
"unbuild": "^2.0.0"
|
|
49
50
|
},
|