fix: tld-list link with correct extension
This commit is contained in:
+3
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user