0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 01:11:24 +01:00
svelte/playgrounds/sandbox/scripts/main.template.svelte

9 lines
211 B
Svelte
Raw Normal View History

<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>