App.vue 499 B

123456789101112131415161718
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. /* 滚动条样式 */
  13. ::-webkit-scrollbar {width: .5rem;height: .625rem;}
  14. ::-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);}
  15. /* 滚动条样式 */
  16. </style>