spotifyplaylistarchive.com/app.vue

16 lines
301 B
Vue
Raw Normal View History

2022-06-29 09:51:44 +02:00
<script setup lang="ts">
import Toast from 'primevue/toast';
</script>
2022-06-29 09:22:55 +02:00
<template>
2022-06-29 09:51:44 +02:00
<div class="w-full h-full flex flex-column">
2022-07-10 22:32:25 +02:00
<UiNavBar />
2022-06-29 09:51:44 +02:00
<main class="flex-1">
<NuxtPage />
</main>
<ClientOnly>
2022-07-02 15:19:04 +02:00
<Toast position="bottom-center" />
2022-06-29 09:51:44 +02:00
</ClientOnly>
</div>
2022-06-29 09:22:55 +02:00
</template>