mirror of https://github.com/sveltejs/svelte
Merge pull request #2234 from sveltejs/gh-2163
Interpret `changed` inside slotted contentpull/2237/head
commit
5b172d8a61
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
let foo = 'a';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div on:click="{() => foo = 'b'}">
|
||||||
|
<slot {foo}></slot>
|
||||||
|
</div>
|
@ -0,0 +1,20 @@
|
|||||||
|
export default {
|
||||||
|
html: `
|
||||||
|
<div>
|
||||||
|
<p>a</p>
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
|
||||||
|
async test({ assert, target, window }) {
|
||||||
|
const div = target.querySelector('div');
|
||||||
|
const click = new window.MouseEvent('click');
|
||||||
|
|
||||||
|
await div.dispatchEvent(click);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div>
|
||||||
|
<p>b</p>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested let:foo={bar}>
|
||||||
|
<p>{bar}</p>
|
||||||
|
</Nested>
|
Loading…
Reference in new issue