App.vue 388 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style>
  7. #app{
  8. height: 100%;
  9. width: 100%;
  10. }
  11. /* 账户列表标题样式 */
  12. .title_examine{
  13. width: 100%;
  14. height: 75px;
  15. background-color: #fff;
  16. border-radius: 8px;
  17. padding: 10px 20px;
  18. box-sizing: border-box;
  19. display: flex;
  20. align-items: center;
  21. }
  22. .pub_title{
  23. font-size: 24px;
  24. font-weight: 400;
  25. }
  26. </style>