mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
13 lines
216 B
Vue
13 lines
216 B
Vue
<script lang="ts" setup>
|
|
//@ts-ignore
|
|
import { onLaunch, onShow } from '@dcloudio/uni-app';
|
|
|
|
onLaunch(() => {
|
|
console.log('App Launch');
|
|
});
|
|
|
|
onShow(() => {
|
|
console.log('App Show');
|
|
});
|
|
</script>
|