poc.vue 231 B

12345678910111213141516
  1. <template>
  2. <main>
  3. <div class="pa-8">
  4. <h1>POC</h1>
  5. <NuxtPage />
  6. </div>
  7. </main>
  8. </template>
  9. <script setup lang="ts"></script>
  10. <style scoped lang="scss">
  11. h1 {
  12. color: rgb(var(--v-theme-primary));
  13. }
  14. </style>