Files
gloabl_award_front/src/App.vue

31 lines
478 B
Vue
Raw Normal View History

2026-02-06 15:10:17 +08:00
<template>
<RouteCache />
</template>
<script setup lang="ts">
import RouteCache from '@/components/RouteCache.vue'
</script>
<style lang="less">
#app {
font-size: 1.6rem;
}
2026-03-19 15:15:38 +08:00
html,
body {
2026-03-30 15:14:45 +08:00
overscroll-behavior: none;
overflow-x: hidden;
2026-03-19 15:15:38 +08:00
&::-webkit-scrollbar {
width: 0;
display: none;
}
&::-webkit-scrollbar-thumb {
display: none;
}
&::-webkit-scrollbar-track {
display: none;
}
scrollbar-width: none;
-ms-overflow-style: none;
}
2026-02-06 15:10:17 +08:00
</style>