App.vue 474 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--
  2. * @Author: LiZhiWei
  3. * @Date: 2025-04-23 09:33:35
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2025-04-23 15:48:07
  6. * @Description:
  7. -->
  8. <template>
  9. <div id="app">
  10. <router-view />
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: "App",
  16. data() {
  17. return {}
  18. },
  19. methods: {},
  20. }
  21. </script>
  22. <style lang="less">
  23. html,
  24. body {
  25. width: 100%;
  26. height: 100%;
  27. overflow: hidden;
  28. margin: 0;
  29. padding: 0;
  30. }
  31. #app {
  32. width: 100%;
  33. height: 100%;
  34. }
  35. </style>