inleft
2022-01-16 aab8119ad66583d65d517e2eb8e574b8794180c9
commit | author | age
bf6fbe 1 <template>
41b36f 2     <div id="app" class="app">
I 3         <router-view class=""></router-view>
bf6fbe 4     </div>
L 5 </template>
6
7 <script>
8     export default {
d3f921 9         components: {},
bf6fbe 10         data() {
L 11             return {}
12         },
d3f921 13         components: {},
bf6fbe 14         computed: {},
L 15         created() {},
16         watch: {},
d3f921 17         methods: {}
bf6fbe 18     }
L 19 </script>
d3f921 20
I 21
41b36f 22 <style lang="less">
I 23     #app {
24         // overflow: auto;
25         //  border: none; 
bf6fbe 26     }
d3f921 27
41b36f 28     /* .scrollbar {
bf6fbe 29         margin: 0 auto;
41b36f 30     } */
d3f921 31     ::-webkit-scrollbar {
bf6fbe 32         /*滚动条整体样式*/
L 33         width: 8px;
d3f921 34         /*高宽分别对应横竖滚动条的尺寸*/
bf6fbe 35     }
L 36
d3f921 37     ::-webkit-scrollbar-thumb {
bf6fbe 38         /*滚动条里面小方块*/
L 39         border-radius: 6px;
40         background: #aaa;
41     }
42
d3f921 43     ::-webkit-scrollbar-track {
bf6fbe 44         /*滚动条里面轨道*/
L 45         border-radius: 8px;
46         background: #FFFFFF;
d3f921 47         margin-top: 20px;
I 48         margin-bottom: 20px;
bf6fbe 49     }
L 50 </style>