The Nx plugin for Vue.
Setting up a new Nx workspace with Vue
You can create a new workspace that uses Vue with one of the following commands:
- Generate a new monorepo with a Vue app set up with Vue
❯
npx create-nx-workspace@latest --preset=vue
For a full tutorial experience, follow the Vue Standalone Tutorial
Add Vue to an existing workspace
There are a number of ways to use Vue in your existing workspace.
Install the @nx/vue
plugin
❯
npm install -D @nx/vue
Generate a new project using Vue
To generate a Vue application, run the following:
❯
nx g @nx/vue:app my-app
To generate a Vue library, run the following:
❯
nx g @nx/vue:lib my-lib