Back to Nx

Vue application generator examples

packages/vue/docs/application-examples.md

22.7.1439 B
Original Source

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