mirror of https://github.com/sveltejs/svelte
commit
62701f5716
@ -0,0 +1,18 @@
|
||||
export default {
|
||||
props: {
|
||||
x: 1
|
||||
},
|
||||
|
||||
html: `
|
||||
<p>1 1 1</p>
|
||||
`,
|
||||
|
||||
test({ assert, component, target }) {
|
||||
assert.equal(component.y, 1);
|
||||
assert.equal(component.z, 1);
|
||||
|
||||
component.x = 2;
|
||||
assert.equal(component.y, 2);
|
||||
assert.equal(component.z, 2);
|
||||
}
|
||||
};
|
@ -0,0 +1,10 @@
|
||||
<script>
|
||||
export let x, y
|
||||
|
||||
$: y = x;
|
||||
|
||||
export let z;
|
||||
$: z = x;
|
||||
</script>
|
||||
|
||||
<p>{x} {y} {z}</p>
|
Loading…
Reference in new issue