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