mirror of https://github.com/sveltejs/svelte
parent
247cfcfc7c
commit
63cd3d0601
@ -0,0 +1,2 @@
|
||||
<p>{value}</p>
|
||||
<input bind:value/>
|
@ -0,0 +1,18 @@
|
||||
export default {
|
||||
html: `
|
||||
<p>foo</p>
|
||||
<input>
|
||||
`,
|
||||
|
||||
test (assert, component, target, window) {
|
||||
const input = target.querySelector('input');
|
||||
|
||||
input.value = 'bar';
|
||||
input.dispatchEvent(new window.Event('input'));
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<p>bar</p>
|
||||
<input>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,15 @@
|
||||
<svelte:component this={Widget} {...props} bind:value="x" />
|
||||
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
Widget,
|
||||
x: 'foo',
|
||||
props: {}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue