mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
11 lines
208 B
Svelte
11 lines
208 B
Svelte
<script lang="ts">
|
|
import { t } from '$lib/store';
|
|
import { onMount } from 'svelte';
|
|
onMount(async () => {
|
|
const a = await t.api.getConnection.query();
|
|
console.log(a);
|
|
});
|
|
</script>
|
|
|
|
<div>hello</div>
|