12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style>
- .el-table--scrollable-x .el-table__body-wrapper{
- overflow-x: auto;
- }
- .el-table__body-wrapper::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- }
- .el-table__body-wrapper::-webkit-scrollbar-thumb {
- border-radius: 5px;
- height: 100px;
- background: #afafaf;
- }
- .el-table__body-wrapper::-webkit-scrollbar-track {
- box-shadow: inset 0 0 5px rgba(255, 255, 255, 1);
- border-radius: 5px;
- background: rgba(255, 255, 255, 1);
- }
- .el-table__body-wrapper {
- background: #ffffff;
- }
- </style>
|