Replace Vite and Vue Router with Nuxt framework Update Docker, build scripts, and env vars for Nuxt generate
13 lines
318 B
Vue
13 lines
318 B
Vue
<script setup lang="ts">
|
|
import AncientArtifactList from '../../src/views/AncientArtifactList.vue';
|
|
|
|
definePageMeta({
|
|
name: 'ancient-artifact-list',
|
|
seo: { titleKey: 'pages.ancientArtifacts.title', descriptionKey: 'pages.ancientArtifacts.subtitle' }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<AncientArtifactList />
|
|
</template>
|