mirror of
https://github.com/kunkunsh/kunkun-ext-rag.git
synced 2025-04-04 02:16:41 +00:00
17 lines
254 B
Svelte
17 lines
254 B
Svelte
<script lang="ts">
|
|
import { open } from '@kksh/api/ui/custom';
|
|
|
|
let { href, children } = $props();
|
|
</script>
|
|
|
|
<a
|
|
class="text-blue-500 hover:underline"
|
|
{href}
|
|
onclick={(e) => {
|
|
e.preventDefault();
|
|
open.url(href);
|
|
}}
|
|
>
|
|
{@render children()}
|
|
</a>
|