Vue.JS

Vue.js

Vue.js (commonly referred to as Vue; pronounced "view") is an open-source model–view–viewmodel front end JavaScript library for building user interfaces and single-page applications. It was created by Evan You, and is maintained by him and the rest of the active core team members.

See Vue.json Wikipedia.

Getting started

The Pro Linux Container of Brap is pre-configured for Vue.js.

To create a new Vue.js application, run:

npm create vue@latest my-vue-js-app

Once the project is created, you may now install its dependencies and start the development server:

cd my-vue-js-app
npm install
npm run dev
npx vite --host

You should then be able to access your Vue.js application on fun-sample-5173.brap.dev, for example.

Vue.js running VS Code terminal and the web browser

Screenshot: Vue.js running VS Code terminal and the web browser

Keywords

  • vuejs
  • vue
  • js
  • javascript
  • web
  • framework
  • frontend

Back to top