spotifyplaylistarchive.com/app.vue

26 lines
486 B
Vue
Raw Normal View History

2022-06-29 09:51:44 +02:00
<script setup lang="ts">
import Toast from 'primevue/toast';
2022-07-13 20:03:12 +02:00
useHead({
title: 'Spotify Playlist Archive',
meta: [
{
name: 'description',
content: 'Browse past versions of thousands of playlists saved over time'
}
]
});
2022-06-29 09:51:44 +02:00
</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>