Files
gloabl_award_front/src/App.vue
2026-03-19 15:15:38 +08:00

29 lines
427 B
Vue

<template>
<RouteCache />
</template>
<script setup lang="ts">
import RouteCache from '@/components/RouteCache.vue'
</script>
<style lang="less">
#app {
font-size: 1.6rem;
}
html,
body {
&::-webkit-scrollbar {
width: 0;
display: none;
}
&::-webkit-scrollbar-thumb {
display: none;
}
&::-webkit-scrollbar-track {
display: none;
}
scrollbar-width: none;
-ms-overflow-style: none;
}
</style>