Skip to main content

Posts

Showing posts with the label What Is VueJs 2?

How To Handle Events in Vue.js 2?

What Is Vue.js? The  Vue.js  is a progressive JavaScript framework and used to building the interactive user interfaces and also it’s focused on the view layer only (front end). The  Vue.js  is easy to integrate with other libraries and others existing projects.  Vue.js  is very popular for Single Page Applications developments. The  Vue.js  is lighter, smaller in size and so faster. It also supports the MVVM ( Model-View-ViewModel ) pattern. How To Handle Events in Vue.js? HTML Code – < script   src = "https://unpkg.com/vue" ></ script > < div   id = "demo-app" >    < input   type = "text"   v-model = "name" >    < button   v-on:click = "myClickMethod" > Click Me?  </ button > < div > VueJs Code – //Model class var   customerModel  = {    name:   "Anil Singh" ,    age: ...

What Is VueJs Life-Cycle Diagram?

The  Vue.js  is a progressive JavaScript framework and used to building the interactive user interfaces and also it’s focused on the view layer only (front end). The  Vue.js  is easy to integrate with other libraries and others existing projects.  Vue.js  is very popular for Single Page Applications developments. The  Vue.js  is lighter, smaller in size and so faster. It also supports the MVVM ( Model-View-ViewModel ) pattern. The below is a diagram for the instance life-cycle and this is refer from the  vuejs.org guide . The  VueJs Life-cycle Diagram looks  like  – What Is VueJs 2? What's New Vue.js 2? I hope you are enjoying with this post! Please share with you friends. Thank you!!

What Is VueJs 2? What's New Vue.js 2?

What Is Vue.js? The  Vue.js  is a progressive JavaScript framework and used to building the interactive user interfaces and also it’s focused on the view layer only (front end). The  Vue.js  is easy to integrate with other libraries and others existing projects.  Vue.js  is very popular for Single Page Applications developments. The  Vue.js  is lighter, smaller in size and so faster. It also supports the MVVM ( Model-View-ViewModel ) pattern. The  Vue.js  is supporting to multiple Components and libraries like - ü    Tables and data grids ü    Notifications ü    Loader ü    Calendar ü    Display time, date and age ü    Progress Bar ü    Tooltip ü    Overlay ü    Icons ü    Menu ü    Charts ü    Map ü    Pdf viewer ü    And so on The  Vue.js ...