123456789101112131415161718 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style>
- /* 滚动条样式 */
- ::-webkit-scrollbar {width: .5rem;height: .625rem;}
- ::-webkit-scrollbar-thumb {background-color: #249ffd;border-radius: 2em;background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.4) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.4) 75%,transparent 75%,transparent);}
- /* 滚动条样式 */
- </style>
|