mirror of https://github.com/sveltejs/svelte
fix dev mode each block validation when using strings (#4451)
parent
a972a47e14
commit
138213ca3c
@ -0,0 +1,10 @@
|
||||
export default {
|
||||
compileOptions: {
|
||||
dev: true
|
||||
},
|
||||
html: `
|
||||
<div>f</div>
|
||||
<div>o</div>
|
||||
<div>o</div>
|
||||
`
|
||||
};
|
@ -0,0 +1,3 @@
|
||||
{#each 'foo' as c}
|
||||
<div>{c}</div>
|
||||
{/each}
|
Loading…
Reference in new issue