mirror of https://github.com/sveltejs/svelte
rewrite props after instrumentation - fixes #1931
parent
cd4f987f4e
commit
454ff8d84e
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: `<h1>Hello world!</h1>`
|
||||||
|
};
|
@ -0,0 +1,5 @@
|
|||||||
|
<h1>Hello {name}!</h1>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export let name='world'
|
||||||
|
</script>
|
Loading…
Reference in new issue