123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!--
- * @Author: LiZhiWei
- * @Date: 2025-04-09 09:06:21
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2025-04-16 08:37:57
- * @Description:
- -->
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: "App",
- data() {
- return {
- excelInstance: null,
- }
- },
- methods: {
-
- },
- }
- </script>
- <style>
- #app {
- font-family: "Avenir", Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #2c3e50;
- margin: 20px;
- }
- .header {
- margin-bottom: 20px;
- }
- #excel-container {
- width: 100%;
- min-height: 500px;
- border: 1px solid #ddd;
- padding: 10px;
- box-sizing: border-box;
- }
- </style>
|