Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 278 Bytes

File metadata and controls

19 lines (15 loc) · 278 Bytes
title
Shorthand class directive

Often, the name of the class will be the same as the name of the value it depends on:

<div class:big={big}>
	<!-- ... -->
</div>

In those cases we can use a shorthand form:

<div class:big>
	<!-- ... -->
</div>