mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2026-05-29 00:00:06 +08:00
19 lines
356 B
Vue
19 lines
356 B
Vue
<script>
|
|
import {
|
|
onLaunch,
|
|
onShow,
|
|
onHide
|
|
} from 'vue'
|
|
export default {
|
|
setup() {
|
|
onLaunch(() => console.log('App Launch'))
|
|
onShow(() => console.log('App Show'))
|
|
onHide(() => console.log('App Hide'))
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
</style>
|