audon/audon-fe/src/App.vue

23 wiersze
497 B
Vue
Czysty Zwykły widok Historia

2022-12-03 03:20:49 +00:00
<script setup>
import { RouterView } from 'vue-router'
2022-12-06 13:20:36 +00:00
import { useMastodonStore } from "./stores/mastodon"
const donStore = useMastodonStore();
donStore.fetchToken();
2022-12-03 03:20:49 +00:00
</script>
<template>
<v-container class="fill-height">
<v-row align="center" justify="center" class="fill-height">
<v-col id="appView">
<v-responsive class="mx-auto" max-width="600px">
<RouterView />
</v-responsive>
</v-col>
</v-row>
</v-container>
</template>
<style>
</style>