Akshay Chauhan avatar

Vue.js Framework Programming

aco5

Published: 17 May 2021 › Updated: 17 May 2021Vue.js Framework Programming

Vue.js Framework Programming

Stake Stock & Staking (2).jpg
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.

Leave Vue.js Framework Programming to:

Written by

A Programmer and Crypto newbie

Read more #vue posts


Best Posts From Akshay Chauhan

We have not curated any of aco5's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.

More Posts From Akshay Chauhan