App.vue
391 Bytes
<!--
* @Date: 2023-10-09 10:45:07
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-10-09 11:02:09
* @FilePath: /print-web/src/App.vue
* @Description: 文件描述
-->
<template>
<div>
<router-view />
</div>
</template>
<script setup>
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'
</script>
<style lang="less" scoped>
</style>