20 lines
399 B
Vue
20 lines
399 B
Vue
<script setup lang="ts">
|
|
import {onHide, onLaunch, onShow} from "@dcloudio/uni-app";
|
|
|
|
onLaunch(() => {
|
|
console.log("App Launch");
|
|
});
|
|
onShow(() => {
|
|
console.log("App Show");
|
|
});
|
|
onHide(() => {
|
|
console.log("App Hide");
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
@import "@/uni.scss";
|
|
@import "@/styles/index.scss";
|
|
/* #ifndef APP-PLUS-NVUE */
|
|
@import "@/static/icons/iconfont.css";
|
|
/* #endif */
|
|
</style> |