AIzhushou-screen/src/App.vue

14 lines
181 B
Vue
Raw Normal View History

2024-05-22 08:44:08 +08:00
<script setup lang="ts">
2024-05-22 10:22:28 +08:00
import "virtual:svg-icons-register";
2024-05-22 08:44:08 +08:00
import { RouterView } from 'vue-router'
</script>
<template>
<RouterView />
</template>
<style scoped>
</style>