index/app.vue

30 lines
495 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
useHead({
titleTemplate: (chunk) => {
return !chunk || chunk === 'Enderman' ? 'Enderman' : `${chunk} Enderman`
},
})
</script>
<template>
<div
id="ender-layout"
class="d-flex flex-column align-items-center pt-sm-5 h-100"
>
<Transition name="page">
<Card />
</Transition>
</div>
<Portal
layout="#ender-layout"
directory="/images/portal"
animate
randomize
fade
/>
<Footer />
</template>
<style></style>