App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div id="app">
  3. <div class="head">
  4. <div class="logo">
  5. <span style="font-size:28px;font-family:'GT Walsheim Pro Trial Bold';font-weight:bold;color:#fff">CocoBlockly</span>
  6. </div>
  7. </div>
  8. <div style="height: calc(100% - 67.5px)">
  9. <!-- main 内容 -->
  10. <keep-alive v-if="$route.meta.keepAlive">
  11. <!-- 这里是会被缓存的视图组件 -->
  12. <router-view
  13. v-if="$route.meta.keepAlive"
  14. />
  15. </keep-alive>
  16. <!-- 这里是不被缓存的视图组件 -->
  17. <router-view
  18. v-if="!$route.meta.keepAlive"
  19. />
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. name: "App",
  26. };
  27. </script>
  28. <style>
  29. * {
  30. margin: 0;
  31. padding: 0;
  32. }
  33. body {
  34. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  35. "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  36. }
  37. #app {
  38. height: 100%;
  39. width: 100%;
  40. /* background: #e6eaf0; */
  41. /* min-width: 1380px; */
  42. min-width: 1000px;
  43. }
  44. .head {
  45. height: 67.5px;
  46. width: 100%;
  47. background-color: #2c4fcd;
  48. display: flex;
  49. align-items: center;
  50. min-width: 1000px;
  51. }
  52. .logo {
  53. margin-left: 20px;
  54. }
  55. </style>