Svelte 默认值
我们可以轻松地在 Nested.svelte
中为 props 指定默认值:
<script>
export let answer = 'a mystery';
</script>
如果我们现在添加第二个没有 answer
props 的组件,它将回退到默认值:
<Nested answer={42}/>
<Nested/>
我们可以轻松地在 Nested.svelte
中为 props 指定默认值:
<script>
export let answer = 'a mystery';
</script>
如果我们现在添加第二个没有 answer
props 的组件,它将回退到默认值:
<Nested answer={42}/>
<Nested/>