fantasia-archive/src/App.vue

11 lines
159 B
Vue
Raw Normal View History

2021-07-10 04:38:42 +12:00
<template>
<router-view />
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App'
})
</script>