App.vue 286 B

12345678910111213141516171819
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "App",
  9. };
  10. </script>
  11. <style>
  12. .app-breadcrumb.el-breadcrumb{
  13. line-height: 60px !important;
  14. }
  15. .el-scrollbar__thumb {
  16. background-color: rgba(144, 147, 153, 0.8)!important;
  17. }
  18. </style>