You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/playgrounds/demo/src/entry-client.ts

10 lines
268 B

// @ts-ignore
import { hydrate, unmount } from 'svelte';
// @ts-ignore you need to create this file
import App from './App.svelte';
const component = hydrate(App, {
target: document.getElementById('root')!
});
// @ts-ignore
window.unmount = () => unmount(component);