pilotwings/frontend/App.vue

14 lines
167 B
Vue
Raw Normal View History

2024-11-02 18:16:32 +00:00
<template>
<RouterView />
</template>
<script lang="ts">
import { RouterView } from 'vue-router'
2024-11-02 18:16:32 +00:00
export default {
components: {
2024-11-02 21:43:27 +00:00
RouterView,
},
2024-11-02 18:16:32 +00:00
}
</script>