22 lines
334 B
Vue
22 lines
334 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<div
|
|
id="ender-layout"
|
|
class="d-flex flex-column justify-content-center align-items-center h-100"
|
|
>
|
|
<Card />
|
|
</div>
|
|
|
|
<Portal
|
|
layout="#ender-layout"
|
|
directory="/images/portal"
|
|
animate
|
|
randomize
|
|
fade
|
|
/>
|
|
<Copyright />
|
|
</template>
|
|
|
|
<style></style>
|