Vue.js
Vue.js
Vue.js is a progressive JavaScript framework for building user interfaces. It is designed to be incrementally adoptable and can easily scale between a library and a full-featured framework.
Create Vue.js App
Vue.js
Create a new Vue.js application
npm create vue@latest
Vue.js Development Server
Vue.js
Start the Vue.js development server
npm run dev
Vue.js Build
Vue.js
Build the Vue.js application for production
npm run build
Vue.js Preview
Vue.js
Preview the production build locally
npm run preview
Vue.js Lint
Vue.js
Run ESLint to check code quality
npm run lint
Vue.js Test
Vue.js
Run unit tests
npm run test
Vue.js Add Component
Vue.js
Add a new component to the project
vue add component-name
Vue.js Add Plugin
Vue.js
Add a new plugin to the project
vue add plugin-name