This template should help get you started developing apps with Vue 3 in Vite with a simple architecture.
- Click the "Use this template" button on the GitHub repository page
- Create a new repository from this template
- Clone your new repository:
git clone https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git cd YOUR_REPO_NAME
Using degit
to clone without the .git
folder:
# Install degit globally if you haven't already
npm install -g degit
# Clone the template
degit antoniogiroz/template-app-vue my-vue-app
cd my-vue-app
# Initialize your own git repository
git init
git add .
git commit -m "Initial commit"
To use the required version of NodeJS, run the following command if you're using nvm to manage your NodeJS versions:
nvm use
pnpm install
pnpm dev
pnpm build
Run Unit Tests with Vitest
pnpm test:unit
Run E2E Tests with Playwright
pnpm test:e2e
pnpm test:e2e:ci