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

563 B

title, description
title description
Vue application generator examples This page contains examples for the @nx/vue:app generator.

Examples

Simple Application

Create an application named my-app:

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:

nx g @nx/vue:app apps/my-dir/my-app --style=scss
Add tags

Add tags to the application (used for linting).

nx g @nx/vue:app apps/my-app --tags=scope:admin,type:ui