31 lines
478 B
Vue
31 lines
478 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 {
|
|
overscroll-behavior: none;
|
|
overflow-x: hidden;
|
|
&::-webkit-scrollbar {
|
|
width: 0;
|
|
display: none;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
display: none;
|
|
}
|
|
&::-webkit-scrollbar-track {
|
|
display: none;
|
|
}
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
}
|
|
</style>
|