mirror of https://github.com/sveltejs/svelte
fix: ensure implicit children snippet renders correctly (#9706)
place anchors around render tags, not snippet tags fixes #9678pull/9715/head
parent
bde42d5676
commit
2416587215
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: ensure implicit children snippet renders correctly
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
const { children, change } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<button onclick={change}>
|
||||||
|
{@render children()}
|
||||||
|
</button>
|
@ -0,0 +1,16 @@
|
|||||||
|
import { flushSync } from 'svelte';
|
||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
html: `<button><span>hidden</span></button>`,
|
||||||
|
|
||||||
|
async test({ assert, target }) {
|
||||||
|
const [b1] = target.querySelectorAll('button');
|
||||||
|
|
||||||
|
flushSync(() => {
|
||||||
|
b1?.click();
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `<button><span>showing</span></button>`);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,13 @@
|
|||||||
|
<script>
|
||||||
|
import Button from "./Button.svelte";
|
||||||
|
|
||||||
|
let show = $state(false);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Button change={() => show = true}>
|
||||||
|
{#if show}
|
||||||
|
<span>showing</span>
|
||||||
|
{:else}
|
||||||
|
<span>hidden</span>
|
||||||
|
{/if}
|
||||||
|
</Button>
|
Loading…
Reference in new issue