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