isobit-ui 0.0.113 → 0.0.119
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/dist/index.js +16 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.118
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2539,6 +2539,13 @@ var script$8 = {
|
|
|
2539
2539
|
filters: null,
|
|
2540
2540
|
filter: null
|
|
2541
2541
|
},
|
|
2542
|
+
watch: {
|
|
2543
|
+
data: function data(v, ov) {
|
|
2544
|
+
console.log('data changed');
|
|
2545
|
+
console.log(ov);
|
|
2546
|
+
console.log(v);
|
|
2547
|
+
}
|
|
2548
|
+
},
|
|
2542
2549
|
data: function data() {
|
|
2543
2550
|
return {
|
|
2544
2551
|
data2: [],
|
|
@@ -2560,7 +2567,12 @@ var script$8 = {
|
|
|
2560
2567
|
},
|
|
2561
2568
|
updated: function updated() {
|
|
2562
2569
|
var me = this;
|
|
2563
|
-
|
|
2570
|
+
|
|
2571
|
+
if (me.data) {
|
|
2572
|
+
me.data2 = me.data;
|
|
2573
|
+
console.log(me.data2);
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2564
2576
|
var p = me.$el.parentElement;
|
|
2565
2577
|
|
|
2566
2578
|
while (me.$el.childNodes.length > 0) {
|
|
@@ -2657,7 +2669,7 @@ var __vue_render__$8 = function __vue_render__() {
|
|
|
2657
2669
|
|
|
2658
2670
|
var _c = _vm._self._c || _h;
|
|
2659
2671
|
|
|
2660
|
-
return _c('div', _vm._l(_vm.filterList, function (item) {
|
|
2672
|
+
return _c('div', [_vm._v(_vm._s(_vm.data ? _vm.data.length : 0) + "\n\t"), _vm._l(_vm.filterList, function (item) {
|
|
2661
2673
|
return _c('option', {
|
|
2662
2674
|
domProps: {
|
|
2663
2675
|
"value": _vm.getValueField(item)
|
|
@@ -2665,7 +2677,7 @@ var __vue_render__$8 = function __vue_render__() {
|
|
|
2665
2677
|
}, [_vm._v(_vm._s(item[_vm.displayField]) + "\n "), _vm._t("default", null, {
|
|
2666
2678
|
"item": item
|
|
2667
2679
|
})], 2);
|
|
2668
|
-
}),
|
|
2680
|
+
})], 2);
|
|
2669
2681
|
};
|
|
2670
2682
|
|
|
2671
2683
|
var __vue_staticRenderFns__$8 = [];
|