Appearance
页面生命周期集成
ESPage
已经包含所有的生命周期事件回调。
也可以使用单独ESPageLifecycle
。
使用ESPageLifecycle
点击查看源码
js
import {ESPageLifecycle} from "@extscreen/es-core";
export default {
mixins: [ESPageLifecycle],
methods: {
onESCreate(params) {
//do sth ...
},
onESRestart() {
//do sth ...
},
onESStart() {
//do sth ...
},
onESResume() {
//do sth ...
},
onESPause() {
//do sth ...
},
onESStop() {
//do sth ...
},
onESDestroy() {
//do sth ...
},
onESNewIntent(intent) {
//do sth ...
},
onESSaveInstanceState(savedInstanceState) {
},
onESRestoreInstanceState(savedInstanceState) {
},
}
}