mirror of https://github.com/sveltejs/svelte
commit
01a099d2e6
@ -0,0 +1 @@
|
||||
<div>A wild component appears</div>
|
@ -0,0 +1,10 @@
|
||||
export default {
|
||||
nestedTransitions: true,
|
||||
|
||||
html: '<div>A wild component appears</div><p>x</p><input type="text">',
|
||||
|
||||
test(assert, component, target) {
|
||||
component.set({ x: 'y' });
|
||||
assert.htmlEqual(target.innerHTML, '<div>A wild component appears</div><p>y</p><input type="text">');
|
||||
},
|
||||
};
|
@ -0,0 +1,21 @@
|
||||
{#if foo}
|
||||
<p>foo</p>
|
||||
{:else}
|
||||
<Widget/>
|
||||
<p>{x}</p>
|
||||
<input type="text" bind:value=x />
|
||||
{/if}
|
||||
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
Widget: './Widget.html'
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
x: 'x'
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue