Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

chore-fix-typo-auto-imports #94

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/2.concepts/4.auto-imports/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Nuxt のディレクトリ構造の規約おかげで、 `components/`、`compos

また、Nuxt はいくつかのコンポーネントやコンポーザブル、ユーティリティも提供しています。
[ルーティング](/concepts/routing) のセクションで登場した `NuxtLink` コンポーネントがその一例です。\
他にも、データフェッチで利用する `useFetch()` コンポーザブルやランタイムの設定にアクセスる `useRuntimeConfig()` コンポーザブル、ページナビゲーションのための `navigateTo()` ユーティリティ関数などがあります。\
他にも、データフェッチで利用する `useFetch()` コンポーザブルやランタイムの設定にアクセスする `useRuntimeConfig()` コンポーザブル、ページナビゲーションのための `navigateTo()` ユーティリティ関数などがあります。\
たくさんあるので、そのほかのものは Nuxt 公式ドキュメントの [Components](https://nuxt.com/docs/api/components)、[Composables](https://nuxt.com/docs/api/composables)、[Utils](https://nuxt.com/docs/api/utils) のセクションを参照してください。

また、Nuxt では明示的なインポートもサポートしており、この場合は `#import` からインポートすることが可能です。
Expand Down