我们可以在 Nested.svelte
中轻松指定组件属性的默认值。
嵌套
<script>
let { answer = 'a mystery' } = $props();
</script>
如果我们现在添加第二个没有 answer
属性的组件,它将回退到默认值。
应用
<Nested answer={42}/>
<Nested />
1
2
3
4
5
6
<script>
import Nested from './Nested.svelte';
</script>
<Nested answer={42} />