@kizmann/nano-ui 0.7.26 → 0.7.27
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/demos/tabs.html +293 -0
- package/dist/nano-ui.js +1 -1
- package/dist/nano-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/draggable/src/draglist/draglist.js +7 -0
package/package.json
CHANGED
@@ -419,6 +419,13 @@ export default {
|
|
419
419
|
});
|
420
420
|
},
|
421
421
|
|
422
|
+
updateNode(node)
|
423
|
+
{
|
424
|
+
Obj.set(this, node.value.route, node.item);
|
425
|
+
|
426
|
+
this.$emit('update:items', this.items);
|
427
|
+
},
|
428
|
+
|
422
429
|
findVirtual(unique)
|
423
430
|
{
|
424
431
|
let value = Arr.find(this.virtuals, (item) => {
|