1234567891011121314151617181920212223242526 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style lang="scss">
- ::-webkit-scrollbar {
- width: 10px;
- height: 1px;
- }
- ::-webkit-scrollbar-thumb {
- background: #C1C1C1;
- border-radius: 10px;
- }
- ::-webkit-scrollbar-track {
- background: #E8E8E8;
- }
- </style>
|