pilotwings/frontend/App.vue

14 lines
165 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: {
RouterView
2024-11-02 18:16:32 +00:00
}
}
</script>