flaschengeist-frontend/src/App.vue

11 lines
162 B
Vue
Raw Normal View History

2019-12-20 12:45:37 +00:00
<template>
<router-view />
2019-12-20 12:45:37 +00:00
</template>
2020-10-02 07:13:14 +00:00
<script lang="ts">
import { defineComponent } from 'vue';
2019-12-20 12:45:37 +00:00
2020-10-02 07:13:14 +00:00
export default defineComponent({
name: 'App',
2020-10-02 07:13:14 +00:00
});
2019-12-21 07:20:25 +00:00
</script>