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.
9 lines
292 B
9 lines
292 B
<script setup lang="ts">
|
|
import TextCursor from './components/TextCursor/TextCursor.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<TextCursor class="text-cursor-overlay" text="💀" :delay="0.01" :spacing="100" :exit-duration="0.5"
|
|
:removal-interval="30" :max-points="8" />
|
|
<router-view />
|
|
</template>
|
|
|