1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-31 19:35:26 +00:00
ArisuAutoSweeper/webapp/packages/renderer/src/components/AlasTitle.vue
2023-11-01 15:33:35 +08:00

15 lines
389 B
Vue

<template>
<section class="text-6xl font-extralight tracking-wide">
<span class="text-7xl text-primary">A</span>risu<span class="text-7xl text-primary">A</span>uto<span class="text-7xl text-primary">S</span>weeper
</section>
</template>
<script lang="ts">
import {defineComponent} from 'vue';
export default defineComponent({
name: 'AlasTitle',
components: {},
});
</script>