@extscreen/es-core 1.1.0 → 1.1.1
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2591,8 +2591,8 @@ function ESPageRootViewComponent() {
|
|
2591
2591
|
});
|
2592
2592
|
Vue.component('page', {
|
2593
2593
|
methods: {
|
2594
|
-
|
2595
|
-
this.$emit("
|
2594
|
+
onLifecycleChange(evt) {
|
2595
|
+
this.$emit("onLifecycleChange", evt);
|
2596
2596
|
},
|
2597
2597
|
onDispatchKeyEvent(evt) {
|
2598
2598
|
this.$emit("onDispatchKeyEvent", evt);
|
@@ -2600,7 +2600,7 @@ function ESPageRootViewComponent() {
|
|
2600
2600
|
},
|
2601
2601
|
render(h) {
|
2602
2602
|
const on = getEventRedirector.call(this, [
|
2603
|
-
['
|
2603
|
+
['onLifecycleChange', 'lifecycleChange'],
|
2604
2604
|
['onDispatchKeyEvent', 'dispatchKeyEvent'],
|
2605
2605
|
]);
|
2606
2606
|
return h('ESPageRootView',
|