vueform-plugin-checkbox-select-all 1.0.0 → 1.0.2
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/package.json +1 -1
- package/readme.md +6 -3
- package/src/index.js +1 -1
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -4,9 +4,12 @@ This plugin enables complex "Select All" logic for Vueform. It handles bi-direct
|
|
|
4
4
|
|
|
5
5
|
## 📦 Installation
|
|
6
6
|
|
|
7
|
-
### 1.
|
|
7
|
+
### 1. Install via NPM
|
|
8
|
+
Run the following command in your project root:
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
```bash
|
|
11
|
+
npm install vueform-plugin-checkbox-select-all
|
|
12
|
+
```
|
|
10
13
|
|
|
11
14
|
### 2. Register in `vueform.config.js`
|
|
12
15
|
|
|
@@ -20,7 +23,7 @@ import { defineConfig } from "@vueform/vueform";
|
|
|
20
23
|
import "@vueform/vueform/dist/vueform.css";
|
|
21
24
|
|
|
22
25
|
// 1. Import the custom plugin
|
|
23
|
-
import CheckboxSelectAll from "
|
|
26
|
+
import CheckboxSelectAll from "vueform-plugin-checkbox-select-all";
|
|
24
27
|
|
|
25
28
|
export default defineConfig({
|
|
26
29
|
theme: vueform,
|