strictSvelteAttr
Control whether Svelte attribute value should be in strict mode or not.
Default option is false
.
Example for false
<div class={class}></div>
Example for true
<div class="{class}"></div>
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
strictSvelteAttr
Control whether Svelte attribute value should be in strict mode or not.
Default option is false
.
false
<div class={class}></div>
true
<div class="{class}"></div>