mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
16 lines
301 B
Vue
16 lines
301 B
Vue
<script setup lang="ts">
|
|
import Toast from 'primevue/toast';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-full flex flex-column">
|
|
<UiNavBar />
|
|
<main class="flex-1">
|
|
<NuxtPage />
|
|
</main>
|
|
<ClientOnly>
|
|
<Toast position="bottom-center" />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|