mirror of https://github.com/sveltejs/svelte
12 lines
147 B
12 lines
147 B
8 years ago
|
<Widget/>{{#if foo}}<Widget/>{{/if}}
|
||
|
|
||
|
<script>
|
||
|
import Widget from './Widget.html';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Widget
|
||
|
}
|
||
|
};
|
||
|
</script>
|