Files
nrwl--nx/packages/vue/docs/application-examples.md
2026-07-13 12:38:36 +08:00

31 lines
563 B
Markdown

---
title: Vue application generator examples
description: This page contains examples for the @nx/vue:app generator.
---
## Examples
##### Simple Application
Create an application named `my-app`:
```shell
nx g @nx/vue:app apps/my-app
```
##### Specify style extension
Create an application named `my-app` in the `my-dir` directory and use `scss` for styles:
```shell
nx g @nx/vue:app apps/my-dir/my-app --style=scss
```
##### Add tags
Add tags to the application (used for linting).
```shell
nx g @nx/vue:app apps/my-app --tags=scope:admin,type:ui
```