0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-27 23:24:46 +01:00
svelte/playgrounds/sandbox/scripts/main.template.svelte
2024-08-26 11:26:45 +02:00

9 lines
211 B
Svelte

<script lang="ts">
function openInEditor() {
fetch('./__open-in-editor?file=src/main.svelte');
}
</script>
<h1>Demo App</h1>
<button class="open-in-editor" on:click={openInEditor}>edit main.svelte</button>