mirror of https://github.com/sveltejs/svelte
null out refs to dynamic components - fixes #1596
parent
63e64c6f42
commit
87e2241928
@ -0,0 +1 @@
|
||||
<p>Foo</p>
|
@ -0,0 +1,21 @@
|
||||
export default {
|
||||
html: `
|
||||
<p>Foo</p>
|
||||
`,
|
||||
|
||||
nestedTransitions: true,
|
||||
|
||||
test(assert, component, target) {
|
||||
const state = component.get();
|
||||
|
||||
component.set({ Foo: null });
|
||||
|
||||
assert.htmlEqual(target.innerHTML, ``);
|
||||
|
||||
component.set({ Foo: state.Foo });
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<p>Foo</p>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,11 @@
|
||||
<svelte:component this={Foo}/>
|
||||
|
||||
<script>
|
||||
import Foo from './Foo.html';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return { Foo };
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue