poc.vue 236 B

1234567891011121314151617
  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">
  10. </script>
  11. <style scoped lang="scss">
  12. h1 {
  13. color: rgb(var(--v-theme-primary))
  14. }
  15. </style>