14 lines
347 B
Vue
14 lines
347 B
Vue
<template>
|
|
<main class="flex items-center justify-center min-w-screen min-h-screen">
|
|
<UButton icon="material-symbols:lock" size="xl" color="primary" variant="solid">Lock</UButton>
|
|
{{ res }}
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const res = await useFetch("https://door.svitan.dev/", {
|
|
method: "GET",
|
|
retry: 2,
|
|
})
|
|
</script>
|