Vuejs is a progressive javascript framework used to develope interactive web interfaces. Focus is more on the view part that is front end. It is very easy to integrate with other projects and libraries.
To start with vuejs we need to create instance of vue which is called the root of vue instance
let app = new Vue({
// options
})
npm install --global vue-cli
vue create filename
cd filename
npm run serve