element-ui-root 1.6.3 → 1.6.4
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.common.js +2 -6
- package/dist/index.umd.js +2 -6
- package/dist/index.umd.min.js +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -17305,18 +17305,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17305
17305
|
}
|
|
17306
17306
|
},
|
|
17307
17307
|
methods: {
|
|
17308
|
-
change: function change() {
|
|
17309
|
-
this.$emit('change', {
|
|
17310
|
-
page: this.pages.page,
|
|
17311
|
-
size: this.pages.size
|
|
17312
|
-
});
|
|
17313
|
-
},
|
|
17314
17308
|
currentChange: function currentChange(page) {
|
|
17315
17309
|
this.pages.page = page;
|
|
17310
|
+
this.$emit('change', this.pages);
|
|
17316
17311
|
this.$emit('changePage', this.pages);
|
|
17317
17312
|
},
|
|
17318
17313
|
sizeChange: function sizeChange(size) {
|
|
17319
17314
|
this.pages.size = size;
|
|
17315
|
+
this.$emit('change', this.pages);
|
|
17320
17316
|
this.$emit('changeSize', this.pages);
|
|
17321
17317
|
}
|
|
17322
17318
|
},
|
package/dist/index.umd.js
CHANGED
|
@@ -17314,18 +17314,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17314
17314
|
}
|
|
17315
17315
|
},
|
|
17316
17316
|
methods: {
|
|
17317
|
-
change: function change() {
|
|
17318
|
-
this.$emit('change', {
|
|
17319
|
-
page: this.pages.page,
|
|
17320
|
-
size: this.pages.size
|
|
17321
|
-
});
|
|
17322
|
-
},
|
|
17323
17317
|
currentChange: function currentChange(page) {
|
|
17324
17318
|
this.pages.page = page;
|
|
17319
|
+
this.$emit('change', this.pages);
|
|
17325
17320
|
this.$emit('changePage', this.pages);
|
|
17326
17321
|
},
|
|
17327
17322
|
sizeChange: function sizeChange(size) {
|
|
17328
17323
|
this.pages.size = size;
|
|
17324
|
+
this.$emit('change', this.pages);
|
|
17329
17325
|
this.$emit('changeSize', this.pages);
|
|
17330
17326
|
}
|
|
17331
17327
|
},
|