14 lines
210 B

<div>
<svelte:component this="{ x ? Foo : Bar }" x='{x}'/>
</div>
<script>
import Foo from './Foo.html';
import Bar from './Bar.html';
export default {
data() {
return { Foo, Bar };
}
};
</script>