mirror of https://github.com/sveltejs/svelte
fix const declared without let: binding get ignored (#7434)
parent
1e0c10bebc
commit
e50be669cc
@ -0,0 +1,2 @@
|
||||
<slot name="box1" />
|
||||
<slot />
|
@ -0,0 +1,15 @@
|
||||
export default {
|
||||
html: `
|
||||
<div>static dynamic</div>
|
||||
<div>static dynamic</div>
|
||||
<div>static dynamic</div>
|
||||
`,
|
||||
async test({ component, target, assert }) {
|
||||
component.props = 'xxx';
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<div>static xxx</div>
|
||||
<div>static xxx</div>
|
||||
<div>static xxx</div>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,24 @@
|
||||
<script>
|
||||
import Component from './Component.svelte';
|
||||
export let props = "dynamic";
|
||||
</script>
|
||||
|
||||
<Component>
|
||||
<svelte:fragment slot="box1">
|
||||
{@const foo = "static"}
|
||||
{@const bar = props}
|
||||
<div>{foo} {bar}</div>
|
||||
</svelte:fragment>
|
||||
|
||||
<svelte:fragment>
|
||||
{@const foo = "static"}
|
||||
{@const bar = props}
|
||||
<div>{foo} {bar}</div>
|
||||
</svelte:fragment>
|
||||
</Component>
|
||||
|
||||
<Component>
|
||||
{@const foo = "static"}
|
||||
{@const bar = props}
|
||||
<div>{foo} {bar}</div>
|
||||
</Component>
|
Loading…
Reference in new issue