This commit is contained in:
che
2026-07-11 11:44:55 +05:00
commit 111cadd184
26 changed files with 4564 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<script setup lang="ts">
import { paramsApi } from "@/api.ts";
import { onMounted, onUnmounted, ref } from "vue";
const res = ref({});
onMounted(async () => {
res.value = await paramsApi.list();
});
</script>
<template>
<h1>You did it!</h1>
<p>
Visit {{ res }}
<a href="https://vuejs.org/" target="_blank" rel="noopener">vuejs.org</a> to
read the documentation
</p>
</template>
<style scoped></style>