mirror of https://github.com/sveltejs/svelte
feat: migrate `<svelte:element this="div">` (#11659)
parent
110a5a852f
commit
c29b74669d
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
feat: migrate `<svelte:element this="div">`
|
@ -0,0 +1,6 @@
|
||||
<svelte:element this="div" />
|
||||
<svelte:element this='div' />
|
||||
<svelte:element this={"div"} />
|
||||
|
||||
<!-- we don't try to fix this bug, we just leave it as-is -->
|
||||
<svelte:element this="h{n}" />
|
@ -0,0 +1,6 @@
|
||||
<svelte:element this={"div"} />
|
||||
<svelte:element this={'div'} />
|
||||
<svelte:element this={"div"} />
|
||||
|
||||
<!-- we don't try to fix this bug, we just leave it as-is -->
|
||||
<svelte:element this="h{n}" />
|
Loading…
Reference in new issue