| 12345678910111213141516171819202122232425262728 |
- <script setup>
- import { ref, reactive, nextTick, onBeforeMount, onUnmounted } from "vue";
- import { useRouter } from "vue-router";
- import { useStore } from "vuex";
- const store = useStore();
- const router = useRouter();
- onBeforeMount(() => {});
- </script>
- <template>
- <router-view></router-view>
- </template>
- <style lang="scss">
- #app {
- max-width: 1920px;
- width: 1920px;
- min-height: 100vh;
- max-height: 1080px;
- margin: 0;
- padding: 0;
- text-align: unset;
- // width: 100%;
- // height: 100%;
- // margin: 0;
- // padding: 0;
- }
- </style>
|