App.vue 384 B

123456789101112131415161718192021222324252627282930
  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 lang="scss">
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. .el-table {
  17. .el-table__body-wrapper {
  18. &::-webkit-scrollbar {
  19. background: #d3dce6;
  20. }
  21. &::-webkit-scrollbar-thumb {
  22. background: #99a9bf;
  23. border-radius: 10px;
  24. }
  25. }
  26. }
  27. </style>