mirror of https://github.com/sveltejs/svelte
parent
850c4745c8
commit
4c3aa0a36f
@ -0,0 +1 @@
|
||||
<p>does nothing</p>
|
@ -0,0 +1,14 @@
|
||||
export default {
|
||||
test ( assert, component ) {
|
||||
let count = 0;
|
||||
|
||||
component.observe( 'bar', () => {
|
||||
count += 1;
|
||||
});
|
||||
|
||||
component.set({ x: true });
|
||||
assert.equal( count, 1 );
|
||||
|
||||
component.destroy();
|
||||
}
|
||||
};
|
@ -0,0 +1,22 @@
|
||||
{{#if x}}
|
||||
<Widget bind:foo='bar.baz'/>
|
||||
{{/if}}
|
||||
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
|
||||
export default {
|
||||
data: function () {
|
||||
return {
|
||||
x: false,
|
||||
bar: {
|
||||
baz: 42
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
components: {
|
||||
Widget
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue