0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Svelte の組み込み要素について

Posted at

Svelteの組み込み要素

  • <svelte:self>

    自分自身をインポートすることはできないため、<svelte:self>を使用して再起的にコンポーネントを使用できる。


  • <svelte:component this={component}>

    selectなどと組み合わせて、表示させるコンポーネントを切り替えることができる。

  • <svelte:element this={element}>

    elementに入った値に応じた要素に変更される。'h1'が入ればh1タグで囲っている時と同じように表示される。

  • <svelte:window>

    windowオブジェクトへのイベントリスナーの適応ができる。bindをかけることもできる。

  • <svelte:body>

    bodyへのイベントリスナーの適応が可能になる。マウス関係のイベントを使用する際に便利。

  • <svelte:document>

    上記のdocument版。

  • <svelte:head>

    head何の要素の追加が可能。

  • <svelte:option>

    レンダリング時のコンポーネントの挙動等の設定ができる。

  • <svelte:fragment>

    <span slot="name"></span> を使用するとspanタグごと要素が送られてしまう。<svelte:fragment>を使用することで、タグで囲った内部だけを送ることができる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?