Skip to main content

{@const ...}

{@const ...} 标签定义了一个本地常量。

¥The {@const ...} tag defines a local constant.

{#each boxes as box}
	{@const area = box.width * box.height}
	{box.width} * {box.height} = {area}
{/each}

{@const} 仅允许作为块({#if ...}{#each ...}{#snippet ...} 等)或 <Component /> 的直接子项。

¥{@const} is only allowed as an immediate child of a block — {#if ...}, {#each ...}, {#snippet ...} and so on — or a <Component />.

上一页 下一页