Skip to content

Overview of the Nx Vue Plugin

The Nx plugin for Vue.

To create a new workspace with Vue, run npx create-nx-workspace@latest --preset=vue.

In any Nx workspace, you can install @nx/vue by running the following command:

nx add @nx/vue

This will install the correct version of @nx/vue.

To generate a Vue application, run the following:

nx g @nx/vue:app apps/my-app

To generate a Vue library, run the following:

nx g @nx/vue:lib libs/my-lib