App.vue 544 B

12345678910111213141516171819202122232425262728
  1. <script setup>
  2. import { ref, reactive, nextTick, onBeforeMount, onUnmounted } from "vue";
  3. import { useRouter } from "vue-router";
  4. import { useStore } from "vuex";
  5. const store = useStore();
  6. const router = useRouter();
  7. onBeforeMount(() => {});
  8. </script>
  9. <template>
  10. <router-view></router-view>
  11. </template>
  12. <style lang="scss">
  13. #app {
  14. max-width: 1920px;
  15. width: 1920px;
  16. min-height: 100vh;
  17. max-height: 1080px;
  18. margin: 0;
  19. padding: 0;
  20. text-align: unset;
  21. // width: 100%;
  22. // height: 100%;
  23. // margin: 0;
  24. // padding: 0;
  25. }
  26. </style>