mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
14 lines
297 B
Svelte
14 lines
297 B
Svelte
<script>
|
|
const {
|
|
name = "",
|
|
age = null,
|
|
favouriteColors = [],
|
|
isAvailable = false,
|
|
} = $props();
|
|
</script>
|
|
|
|
<p>My name is {name}!</p>
|
|
<p>My age is {age}!</p>
|
|
<p>My favourite colors are {favouriteColors.join(", ")}!</p>
|
|
<p>I am {isAvailable ? "available" : "not available"}</p>
|