TIL: Svelte | props export - 221205

Lumpen·2022년 12월 5일
0

Svelte

목록 보기
1/4

props export

$: 와 같이 조금 생소한 문법이겠지만 편리하다고 한다

모듈화된 컴포넌트에서 변수를 export하면
해당 컴포넌트를 import 하는 곳에서
해당 변수를 props로 전달받는 것과 같이 사용할 수 있다

사용

App.svelte

<script>
	import Nested from './Nested.svelte';
</script>

<Nested answer={42}/>

Nested.svelte

<script>
	export let answer;
</script>

<p>The answer is {answer}</p>

https://svelte.dev/tutorial/spread-props

profile
떠돌이 생활을 하는. 실업자는 아니지만, 부랑 생활을 하는

0개의 댓글