mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 15:03:02 +01:00
27 lines
500 B
Vue
27 lines
500 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">
|
|
<NavBar />
|
|
<main class="flex-1">
|
|
<NuxtPage />
|
|
</main>
|
|
<ClientOnly>
|
|
<Toast position="bottom-center" />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|