Replace Vite and Vue Router with Nuxt framework Update Docker, build scripts, and env vars for Nuxt generate
13 lines
338 B
Vue
13 lines
338 B
Vue
<script setup lang="ts">
|
|
import HabitatList from '../../src/views/HabitatList.vue';
|
|
|
|
definePageMeta({
|
|
name: 'event-habitat-list',
|
|
seo: { titleKey: 'pages.eventHabitats.title', descriptionKey: 'pages.eventHabitats.subtitle', canonicalPath: '/event-habitats' }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<HabitatList :event-only="true" />
|
|
</template>
|