123456789101112131415161718192021222324252627 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style >
- ::-webkit-scrollbar {
- width: 7px;
- height: 7px;
-
- }
- ::-webkit-scrollbar-thumb {
- background-color: #9999;
- /* background: linear-gradient(to left,#32e4c663,#0c6ceb71); */
- border-radius: 5px;
- box-shadow: 0 2px 12px 0 rgba(204, 201, 201, 0.1)
- }
- </style>
|