mirror of https://github.com/sveltejs/svelte
parent
dd9ecb8064
commit
f4e66c0e72
@ -0,0 +1 @@
|
||||
<p>Bar {{x}}</p>
|
@ -0,0 +1 @@
|
||||
<p>Foo {{x}}</p>
|
@ -0,0 +1,19 @@
|
||||
export default {
|
||||
data: {
|
||||
x: 1
|
||||
},
|
||||
|
||||
html: `
|
||||
<p>Foo 1</p>
|
||||
`,
|
||||
|
||||
test(assert, component, target) {
|
||||
component.set({
|
||||
x: 2
|
||||
});
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<p>Foo 2</p>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,12 @@
|
||||
<:Switch { x ? Foo : Bar } x='{{x}}'/>
|
||||
|
||||
<script>
|
||||
import Foo from './Foo.html';
|
||||
import Bar from './Bar.html';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return { Foo, Bar };
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue