flaschengeist-frontend/src/App.vue

13 lines
209 B
Vue
Raw Normal View History

2019-12-20 12:45:37 +00:00
<template>
2020-10-02 07:13:14 +00:00
<div id="q-app">
2020-01-14 21:01:24 +00:00
<router-view />
2020-10-02 07:13:14 +00:00
</div>
2019-12-20 12:45:37 +00:00
</template>
2020-10-02 07:13:14 +00:00
<script lang="ts">
import { defineComponent } from '@vue/composition-api';
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>