27 lines
513 B
Vue
27 lines
513 B
Vue
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
/*定义滚动条轨道 圆角*/
|
|
::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
/*定义滑块 圆角*/
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background-color: #c8c8c8;
|
|
}
|
|
</style>
|