mirror of https://github.com/sveltejs/svelte
pull/1555/head
parent
c641ce423a
commit
9a0af96c44
@ -0,0 +1,14 @@
|
|||||||
|
<button on:click='set({ "x-count": state["x-count"] + 1 })'>+1</button>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data: () => ({
|
||||||
|
"x-count": 0
|
||||||
|
}),
|
||||||
|
computed: {
|
||||||
|
state(arg) {
|
||||||
|
return arg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,29 @@
|
|||||||
|
export default {
|
||||||
|
'skip-ssr': true, // TODO delete this line, once binding works
|
||||||
|
|
||||||
|
html: `
|
||||||
|
<button>+1</button>
|
||||||
|
<p>count: 0</p>
|
||||||
|
`,
|
||||||
|
|
||||||
|
test ( assert, component, target, window ) {
|
||||||
|
const click = new window.MouseEvent( 'click' );
|
||||||
|
const button = target.querySelector( 'button' );
|
||||||
|
|
||||||
|
button.dispatchEvent( click );
|
||||||
|
|
||||||
|
assert.equal( component.get().x, 1 );
|
||||||
|
assert.htmlEqual( target.innerHTML, `
|
||||||
|
<button>+1</button>
|
||||||
|
<p>count: 1</p>
|
||||||
|
` );
|
||||||
|
|
||||||
|
button.dispatchEvent( click );
|
||||||
|
|
||||||
|
assert.equal( component.get().x, 2 );
|
||||||
|
assert.htmlEqual( target.innerHTML, `
|
||||||
|
<button>+1</button>
|
||||||
|
<p>count: 2</p>
|
||||||
|
` );
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,12 @@
|
|||||||
|
<Counter bind:x-count='x'/>
|
||||||
|
<p>count: {x}</p>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Counter from './Counter.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
Counter
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,10 @@
|
|||||||
|
<p>{state["b-c"]}</p>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
state(states) {
|
||||||
|
return states;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: '<div><p>i am a widget</p></div>'
|
||||||
|
};
|
@ -0,0 +1,11 @@
|
|||||||
|
<div>
|
||||||
|
<Widget b-c="i am a widget"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Widget from './Widget.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Widget }
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue