spotifyplaylistarchive.com/app.vue
2022-09-03 16:23:00 +02:00

27 lines
502 B
Vue

<script setup lang="ts">
import Toast from 'primevue/toast';
useHead({
title: 'Spotify Playlist Archive',
meta: [
{
name: 'description',
content:
'Browse past versions of thousands of Spotify playlists saved over time'
}
]
});
</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>