自动导入

本例演示了 Nuxt 中的自动导入功能。

在 Nuxt 中自动导入功能的示例:

  • components/ 目录中的 Vue 组件会被自动导入,可以直接在模板中使用。
  • composables/ 目录中的 Vue 可组合式函数会被自动导入,可以直接在模板和 JS/TS 文件中使用。
  • utils/ 目录中的 JS/TS 变量和函数会被自动导入,可以直接在模板和 JS/TS 文件中使用。
Read more in Docs > Guide > Directory Structure > Components.
Read more in Docs > Guide > Directory Structure > Composables.
Read more in Docs > Guide > Directory Structure > Utils.
Loading Sandbox...