updated to svelte 5

This commit is contained in:
2026-04-24 20:05:31 +09:00
parent f8d27c1aca
commit 3b0d5b4864
5 changed files with 908 additions and 1050 deletions

View File

@@ -27,4 +27,4 @@
});
</script>
<div {id} />
<div {id}></div>

View File

@@ -1,8 +1,8 @@
import { mount } from 'svelte';
import App from './App.svelte';
const app = new App({
target: document.body,
props: {},
const app = mount(App, {
target: document.body
});
export default app;
export default app;