mirror of https://github.com/sveltejs/svelte
14 lines
243 B
14 lines
243 B
4 years ago
|
<script>
|
||
2 years ago
|
import Profile from './Profile.svelte';
|
||
4 years ago
|
</script>
|
||
|
|
||
|
<Profile>
|
||
|
<span slot="name">Bob</span>
|
||
|
<span slot="email">bob@email.com</span>
|
||
|
</Profile>
|
||
|
|
||
|
<Profile>
|
||
|
<span slot="name">Alice</span>
|
||
|
<span slot="phone">12345678</span>
|
||
|
</Profile>
|