leisure-core 0.4.86 → 0.4.87
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/le-list/src/main.vue +2 -5
- package/package.json +1 -1
package/le-list/src/main.vue
CHANGED
|
@@ -185,15 +185,12 @@ export default {
|
|
|
185
185
|
},
|
|
186
186
|
computed: {},
|
|
187
187
|
created() {
|
|
188
|
-
EventBus.$on("closeDialog",
|
|
189
|
-
this.closeDialog();
|
|
190
|
-
});
|
|
188
|
+
EventBus.$on("closeDialog", this.closeDialog);
|
|
191
189
|
},
|
|
192
190
|
destroyed() {
|
|
193
|
-
EventBus.$off("closeDialog");
|
|
191
|
+
EventBus.$off("closeDialog",this.closeDialog);
|
|
194
192
|
},
|
|
195
193
|
mounted() {
|
|
196
|
-
EventBus;
|
|
197
194
|
this.getList();
|
|
198
195
|
},
|
|
199
196
|
methods: {
|