18 lines
228 B
Vue
18 lines
228 B
Vue
<script>
|
|
export default {
|
|
onLaunch() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow() {
|
|
console.log('App Show')
|
|
},
|
|
onHide() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './styles/global.css';
|
|
</style>
|