svelte 공식 사이트 Tutorial 정리 ⓒ : Special tags
Special tags
The @debug tag
- 말그대로 debugger;와 동일
예시
debugger trigger
1
{@debug}
변수 확인 : console.log보다 유용
1
{@debug 변수명}
HTML tags
- html로 바꿔주는 건데 XSS 공격에 노출될 위험이 있으므로 미사용 권장
예시
1
2
3
4
5
<script>
let string = `this string contains some <strong>HTML!!!</strong>`;
</script>
<p>{@html string}</p>
댓글남기기