@ace-grid/vue 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 +19 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @ace-grid/vue
|
|
2
2
|
|
|
3
|
-
Ace Grid Vue provides Vue 3 bindings for Ace Grid Core, Pro, and Enterprise
|
|
3
|
+
Ace Grid Vue provides Vue 3 bindings for Ace Grid Core, Pro, and Enterprise. It
|
|
4
|
+
adds a thin Vue integration layer while grid capabilities stay in the selected
|
|
5
|
+
Ace Grid runtime.
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
@@ -17,8 +19,16 @@ npm install @ace-grid/vue @ace-grid/enterprise vue react react-dom
|
|
|
17
19
|
|
|
18
20
|
## Quick start
|
|
19
21
|
|
|
20
|
-
```
|
|
22
|
+
```vue
|
|
23
|
+
<script setup lang="ts">
|
|
21
24
|
import AceGrid from "@ace-grid/vue/core";
|
|
25
|
+
|
|
26
|
+
const data = { rows, columns };
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
<template>
|
|
30
|
+
<AceGrid :data="data" :layout="{ height: 520 }" />
|
|
31
|
+
</template>
|
|
22
32
|
```
|
|
23
33
|
|
|
24
34
|
Use the tier-specific entry point that matches your runtime:
|
|
@@ -27,15 +37,15 @@ Use the tier-specific entry point that matches your runtime:
|
|
|
27
37
|
- `@ace-grid/vue/pro`
|
|
28
38
|
- `@ace-grid/vue/enterprise`
|
|
29
39
|
|
|
30
|
-
##
|
|
31
|
-
|
|
32
|
-
This package contains the Vue wrapper only. It does not include Core, Pro, or Enterprise runtime code. Install the runtime package that matches your feature tier.
|
|
40
|
+
## Related packages
|
|
33
41
|
|
|
34
|
-
|
|
42
|
+
- `@ace-grid/core` for free grid features.
|
|
43
|
+
- `@ace-grid/pro` for formulas, validation, Excel workflows, grouping, and
|
|
44
|
+
sparklines.
|
|
45
|
+
- `@ace-grid/enterprise` for server row model, pivoting, charts, and
|
|
46
|
+
master-detail.
|
|
35
47
|
|
|
36
|
-
|
|
37
|
-
- Use Core for free-tier features.
|
|
38
|
-
- Use Pro or Enterprise only when the application is licensed for those tiers.
|
|
48
|
+
Docs and API reference: https://ace-grid.com
|
|
39
49
|
|
|
40
50
|
## License
|
|
41
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ace-grid/vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Tier-neutral Vue wrapper for Ace Grid Core, Pro, and Enterprise runtimes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/vue.js",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"license": "MIT",
|
|
63
63
|
"repository": {
|
|
64
64
|
"type": "git",
|
|
65
|
-
"url": "git+https://github.com/Vitashev/
|
|
65
|
+
"url": "git+https://github.com/Vitashev/ace-grid-core.git"
|
|
66
66
|
},
|
|
67
67
|
"bugs": {
|
|
68
|
-
"url": "https://github.com/Vitashev/
|
|
68
|
+
"url": "https://github.com/Vitashev/ace-grid-core/issues"
|
|
69
69
|
},
|
|
70
70
|
"homepage": "https://ace-grid.com",
|
|
71
71
|
"keywords": [
|