@ace-grid/vue 1.0.7
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 +42 -0
- package/dist/angularTier-BxO1uxwB.mjs +24085 -0
- package/dist/vue-core.d.ts +5 -0
- package/dist/vue-core.js +18 -0
- package/dist/vue-enterprise.d.ts +5 -0
- package/dist/vue-enterprise.js +18 -0
- package/dist/vue-pro.d.ts +5 -0
- package/dist/vue-pro.js +18 -0
- package/dist/vue.d.ts +17 -0
- package/dist/vue.js +222 -0
- package/package.json +78 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @ace-grid/vue
|
|
2
|
+
|
|
3
|
+
Ace Grid Vue provides Vue 3 bindings for Ace Grid Core, Pro, and Enterprise runtimes. It gives Vue applications a thin integration layer while keeping feature ownership in the selected Ace Grid runtime.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @ace-grid/vue @ace-grid/core vue react react-dom
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
For paid tiers, install the matching runtime:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @ace-grid/vue @ace-grid/pro vue react react-dom
|
|
15
|
+
npm install @ace-grid/vue @ace-grid/enterprise vue react react-dom
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Quick start
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
import AceGrid from "@ace-grid/vue/core";
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Use the tier-specific entry point that matches your runtime:
|
|
25
|
+
|
|
26
|
+
- `@ace-grid/vue/core`
|
|
27
|
+
- `@ace-grid/vue/pro`
|
|
28
|
+
- `@ace-grid/vue/enterprise`
|
|
29
|
+
|
|
30
|
+
## Package boundaries
|
|
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.
|
|
33
|
+
|
|
34
|
+
## Production notes
|
|
35
|
+
|
|
36
|
+
- Keep wrapper and runtime versions aligned.
|
|
37
|
+
- Use Core for free-tier features.
|
|
38
|
+
- Use Pro or Enterprise only when the application is licensed for those tiers.
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT. Runtime packages may have separate license terms.
|