flaschengeist-frontend/src/App.vue

20 lines
172 B
Vue
Raw Normal View History

2019-12-20 12:45:37 +00:00
<template>
2019-12-21 07:20:25 +00:00
<v-app>
2019-12-20 13:01:36 +00:00
<router-view/>
2019-12-21 07:20:25 +00:00
</v-app>
2019-12-20 12:45:37 +00:00
</template>
2019-12-21 07:20:25 +00:00
<script>
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
export default {
name: 'App',
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
components: {
},
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
data: () => ({
//
}),
};
</script>