12345678910111213141516171819 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "App",
- };
- </script>
- <style>
- .app-breadcrumb.el-breadcrumb{
- line-height: 60px !important;
- }
- .el-scrollbar__thumb {
- background-color: rgba(144, 147, 153, 0.8)!important;
- }
- </style>
|