1234567891011121314151617181920212223242526272829303132333435363738 |
- <!--
- * @Author: LiZhiWei
- * @Date: 2025-04-23 09:33:35
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2025-04-23 15:48:07
- * @Description:
- -->
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "App",
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style lang="less">
- html,
- body {
- width: 100%;
- height: 100%;
- overflow: hidden;
- margin: 0;
- padding: 0;
- }
- #app {
- width: 100%;
- height: 100%;
- }
- </style>
|