App.vue 617 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div id="app">
  3. <app-layout></app-layout>
  4. </div>
  5. </template>
  6. <script>
  7. import AppLayout from "@/framework";
  8. export default {
  9. components: {
  10. AppLayout
  11. }
  12. };
  13. </script>
  14. <style lang="less">
  15. html,
  16. body,
  17. #app {
  18. width: 100%;
  19. height: 100%;
  20. overflow: hidden;
  21. }
  22. body {
  23. margin: 0;
  24. color: #fff;
  25. font-size: 14px;
  26. line-height: normal;
  27. background-color: rgb(38, 39, 41);
  28. user-select: none;
  29. font-family: OpenSans, sans-serif;
  30. }
  31. ul {
  32. list-style: none;
  33. margin: 0;
  34. padding: 0;
  35. }
  36. img {
  37. border: 0;
  38. outline: 0;
  39. }
  40. </style>
  41. <style lang="less" src="@/assets/style/style.pc.less"></style>