You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,12 @@ data () {
51
51
</grid>
52
52
```
53
53
54
+
Plugin does **NOT** modify the source data array.
55
+
56
+
1. Every time permutation is performed you will get a new sorted array in event (`items`).
57
+
2. The same works for removing elements, you will get a new "cleaned" array in your `@remove` event handler.
58
+
3. Currently there is no way to extend data array after event handling. But hopefully I'll come up with a clean way to do it in nearest future.
59
+
54
60
### Props
55
61
56
62
| Name | Type | Default | Description |
@@ -96,6 +102,12 @@ Example:
96
102
</template>
97
103
```
98
104
105
+
### Why do i need this?
106
+
107
+
A good example of using a plugin would be rending macOS' `Launchpad` or `Dock`. Check out a demo for a solid example of how the plugin behaves & feels.
0 commit comments