App.vue 267 B

12345678910111213141516
  1. <script setup>
  2. import { RouterView } from "vue-router";
  3. </script>
  4. <template>
  5. <RouterView />
  6. </template>
  7. <style>
  8. :root:root {
  9. --van-primary-color: #981b23;
  10. --van-base-font: "SourceHanSerifSC-Regular";
  11. --design-width: 750;
  12. --design-height: 1424;
  13. }
  14. </style>