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