App.vue 704 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!--
  2. * @Author: LiZhiWei
  3. * @Date: 2025-04-09 09:06:21
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2025-04-16 08:37:57
  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. excelInstance: null,
  19. }
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style>
  26. #app {
  27. font-family: "Avenir", Helvetica, Arial, sans-serif;
  28. -webkit-font-smoothing: antialiased;
  29. -moz-osx-font-smoothing: grayscale;
  30. color: #2c3e50;
  31. margin: 20px;
  32. }
  33. .header {
  34. margin-bottom: 20px;
  35. }
  36. #excel-container {
  37. width: 100%;
  38. min-height: 500px;
  39. border: 1px solid #ddd;
  40. padding: 10px;
  41. box-sizing: border-box;
  42. }
  43. </style>