Files
4yn_slidershim/src/Link.svelte
T
2022-02-05 18:00:06 +08:00

14 lines
210 B
Svelte

<script lang="ts">
import { open } from "@tauri-apps/api/shell";
export let href: string;
</script>
<a
{href}
on:click={async (e) => {
e.preventDefault();
await open(href);
}}><slot /></a
>