mirror of https://github.com/sveltejs/svelte
19 lines
305 B
19 lines
305 B
---
|
|
title: Default values
|
|
---
|
|
|
|
We can easily specify default values for props in `Nested.svelte`:
|
|
|
|
```html
|
|
<script>
|
|
export let answer = 'a mystery';
|
|
</script>
|
|
```
|
|
|
|
If we now add a second component *without* an `answer` prop, it will fall back to the default:
|
|
|
|
```html
|
|
<Nested answer={42}/>
|
|
<Nested/>
|
|
```
|