fix: tld-list link with correct extension
Deploy / Deploy to Stapler (push) Has been cancelled
Deploy / Build (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / Oxlint (push) Has been cancelled
Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-06-26 14:26:31 +02:00
parent e5ab509c29
commit b8e08cb208
4 changed files with 19 additions and 6 deletions
+3 -1
View File
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, onMounted, defineAsyncComponent } from "vue";
import { ref, onMounted, defineAsyncComponent, onBeforeMount } from "vue";
const PageRandom = defineAsyncComponent(() => import("@/components/PageRandom.vue"));
const PageInput = defineAsyncComponent(() => import("@/components/PageInput.vue"));
const PageHistory = defineAsyncComponent(() => import("./components/PageHistory.vue"));
@@ -8,6 +8,8 @@ import { DomainFactory } from "@/lib/factory";
const visible = ref<boolean>(false);
const factory = ref<DomainFactory>(new DomainFactory());
onBeforeMount(() => {});
onMounted(() => {
setTimeout(() => {
visible.value = true;