App.vue 210 B

123456789101112
  1. <script setup>
  2. import ScaleBox from "./components/ScaleBox.vue";
  3. </script>
  4. <template>
  5. <scale-box :width="1920" :height="1080">
  6. <router-view></router-view>
  7. </scale-box>
  8. </template>
  9. <style >
  10. </style>