1). VUE.JS Introduction and Features
VueJS is a progressive JavaScript framework used to develop interactive web interfaces. Focus is more on the view part, which is the front end.
Directives
VueJS has built-in directives such as v-if, v-else, v-show, v-on, v-bind, and v-model, which are used to perform various actions on the frontend.
Watchers
Routing
Navigation between pages is performed with the help of vue-router.
Lightweight
VueJS script is very lightweight and the performance is also very fast.
Virtual DOM
VueJS use of virtual DOM, which is also used by other frameworks same like React, Ember, etc. The changes are not made to the DOM, instead a replica of the DOM is created which is present in the form of JavaScript data structures.
VueJS has built-in directives such as v-if, v-else, v-show, v-on, v-bind, and v-model, which are used to perform various actions on the frontend.
Watcher takes care of handling any data changes making the code simple and fast.
Navigation between pages is performed with the help of vue-router.
Lightweight
VueJS script is very lightweight and the performance is also very fast.
Comments
Post a Comment