mirror of https://github.com/sveltejs/svelte
Merge pull request #2618 from EmilTholin/remove_21618scope_from_spread
Remove the $$scope key from $$props when calculating spreadpull/2670/head
commit
c217f2b00b
@ -0,0 +1,4 @@
|
|||||||
|
<div>
|
||||||
|
<slot />
|
||||||
|
<div {...$$props}></div>
|
||||||
|
</div>
|
@ -0,0 +1,19 @@
|
|||||||
|
export default {
|
||||||
|
html: `
|
||||||
|
<div>
|
||||||
|
<input />
|
||||||
|
<div class="foo"></div>
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
|
||||||
|
async test({ assert, component, target }) {
|
||||||
|
component.value = 'foo';
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<div>
|
||||||
|
<input />
|
||||||
|
<div class="foo"></div>
|
||||||
|
</div>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,8 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.svelte';
|
||||||
|
export let value = '';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested class="foo">
|
||||||
|
<input bind:value />
|
||||||
|
</Nested>
|
Loading…
Reference in new issue