--- title: Vue application generator examples description: This page contains examples for the @nx/vue:app generator. --- ## Examples {% tabs %} {% tab label="Simple Application" %} Create an application named `my-app`: ```shell nx g @nx/vue:app apps/my-app ``` {% /tab %} {% tab label="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 ``` {% /tab %} {% tab label="Add tags" %} Add tags to the application (used for linting). ```shell nx g @nx/vue:app apps/my-app --tags=scope:admin,type:ui ``` {% /tab %} {% /tabs %}