nuxi add
将实体构建到您的 Nuxt 应用程序中。
终端
npx nuxi add [--cwd] [--force] <TEMPLATE> <NAME>
选项 | 默认值 | 描述 |
---|---|---|
TEMPLATE | - | 指定要生成的 文件的模板。 |
NAME | - | 指定要创建的文件的名称。 |
--cwd | . | 目标应用程序的目录。 |
--force | false | 如果文件已存在,则强制覆盖。 |
修饰符
某些模板支持额外的修饰符标志,以在其名称中添加后缀(如 .client
或 .get
)。
终端
# Generates `/plugins/sockets.client.ts`
npx nuxi add plugin sockets --client
nuxi add component
- 修饰符标志:
--mode client|server
或--client
或--server
终端
# Generates `components/TheHeader.vue`
npx nuxi add component TheHeader
nuxi add composable
终端
# Generates `composables/foo.ts`
npx nuxi add composable foo
nuxi add layout
终端
# Generates `layouts/custom.vue`
npx nuxi add layout custom
nuxi add plugin
- 修饰符标志:
--mode client|server
或--client
或--server
终端
# Generates `plugins/analytics.ts`
npx nuxi add plugin analytics
nuxi add page
终端
# Generates `pages/about.vue`
npx nuxi add page about
终端
# Generates `pages/category/[id].vue`
npx nuxi add page "category/[id]"
nuxi add middleware
- 修饰符标志:
--global
终端
# Generates `middleware/auth.ts`
npx nuxi add middleware auth
nuxi add api
- 修饰符标志:
--method
(可以接受connect
、delete
、get
、head
、options
、patch
、post
、put
或trace
)或者您可以直接使用--get
、--post
等。
终端
# Generates `server/api/hello.ts`
npx nuxi add api hello