Skip to main content

<svelte:head>

<svelte:head>...</svelte:head>

此元素使得将元素插入到 document.head 成为可能。在服务器端渲染期间,head 内容与主 body 内容分开暴露。

<svelte:window><svelte:document><svelte:body>一样,此元素只能出现在组件的最顶层,绝不能在块或元素内部。

<svelte:head>
	<title>Hello world!</title>
	<meta name="description" content="This is where the description goes for SEO" />
</svelte:head>

Edit this page on GitHub llms.txt