mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
29 lines
507 B
Vue
29 lines
507 B
Vue
<script setup lang="ts">
|
|
import {onLaunch, onShow, onHide} from "@dcloudio/uni-app";
|
|
|
|
onLaunch(() => {
|
|
console.log("App Launch");
|
|
});
|
|
onShow(() => {
|
|
console.log("App Show");
|
|
});
|
|
onHide(() => {
|
|
console.log("App Hide");
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
:not(not), ::before, ::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
/* 隐藏scroll-view的滚动条 */
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
width: 0 !important;
|
|
height: 0 !important;
|
|
-webkit-appearance: none;
|
|
background: transparent;
|
|
}
|
|
</style>
|