[+] Fully implement netease import

This commit is contained in:
2025-11-19 23:07:36 +08:00
parent dbaca29397
commit 69c9e42a3c
3 changed files with 56 additions and 41 deletions
+18
View File
@@ -0,0 +1,18 @@
<script lang="ts">
import Dialog from "./Dialog.svelte";
let p: {
error?: string
} = $props()
let open = $derived(!!p.error)
</script>
<Dialog title="错误" bind:open buttons={[{
text: "刷新重试",
onclick: () => location.reload()
}]}>
<div class="text-red-500">
{p.error}
</div>
</Dialog>