mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-30 21:25:20 +00:00
8 lines
157 B
Svelte
8 lines
157 B
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { onMount } from 'svelte';
|
|
|
|
onMount(() => {
|
|
goto('/workspace/models');
|
|
});
|
|
</script>
|