App.vue 227 B

123456789101112131415
  1. <template>
  2. <router-view></router-view>
  3. </template>
  4. <script setup lang="ts">
  5. import { useRoute } from 'vue-router';
  6. // 这里写你的业务逻辑
  7. // const route = useRoute();
  8. </script>
  9. <style>
  10. /* 全局样式 */
  11. </style>