123456789101112131415161718192021222324252627282930 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style lang="scss">
- * {
- margin: 0;
- padding: 0;
- }
- .el-table {
- .el-table__body-wrapper {
- &::-webkit-scrollbar {
- background: #d3dce6;
- }
- &::-webkit-scrollbar-thumb {
- background: #99a9bf;
- border-radius: 10px;
- }
- }
- }
- </style>
|