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>
本文档使用 BookStack 构建