index.vue 133 B

1234567891011
  1. <template>
  2. <div>
  3. <h1>Landing Page</h1>
  4. </div>
  5. </template>
  6. <script setup>
  7. definePageMeta({
  8. layout: 'default',
  9. });
  10. </script>