Vue.js Framework

0 11
Avatar for aco5
Written by
2 years ago

If you’ve been following JS framework market trends, you may know that the main contenders in the competition are React and Angular. But there is another JS framework that is growing rapidly, Vue.js. As per estimates, approx 15.2% of developers use this framework. Last year, its growth was 220% which was way bigger than react.js(34%).
Vue.js is a progressive framework for JavaScript used to build web interfaces and one-page applications. Not just for web interfaces, Vue.js is also used both for desktop and mobile app development with Electron framework The name of the framework – Vue with the same sound as view, and it corresponds to the traditional Model-View-Controller (MVC) architecture.
The vue.js Provide reactivity. It means the changes on the view level change the data and the changes in the data level change the view. The Vue Framework is easy to code and generally shorter than jquery or JS. It is a front-end tool i.e it is used to make interactive front-end pages or UI.

Advantages of VUE

  1. Reactive two-way data binding

  2. Small

  3. Single-file components and readability

Let's code an HTML page with the Vue framework.

HTML
<HTML>
  <BODY>
    <div> {{name}} {{site}}</div>   
    <SCRIPT>
       new Vue({
          el:"#root"
          data:{
            name:"aco5"
            site:"LEO FINANCE"
          }
       })
    </SCRIPT>
  </BODY>
</HTML>


output:-
aco5 LEOFINANCE

This is how a typical web code with a VUE framework is written. Much similar to React. In 2019 Vue was the second most love JS framework. This all for this blog. Would tell you more about VUE in the next blog.


#VUE

#PROGRAMMING

#WEBDEVELOPEMENT

#FRAMEWORK


1
$ 0.00
Avatar for aco5
Written by
2 years ago

Comments