songs.vue 274 B

123456789101112131415
  1. <template>
  2. <div>
  3. <h1 class="text-center mb-6">Songs</h1>
  4. <v-card class="pa-4">
  5. <p class="text-center">This page is under construction.</p>
  6. </v-card>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. // Set page title
  11. useHead({
  12. title: 'Songs'
  13. })
  14. </script>