文字游戏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
292 B

2 months ago
<script setup lang="ts">
import TextCursor from './components/TextCursor/TextCursor.vue';
2 months ago
</script>
<template>
<TextCursor class="text-cursor-overlay" text="💀" :delay="0.01" :spacing="100" :exit-duration="0.5"
:removal-interval="30" :max-points="8" />
2 months ago
<router-view />
</template>