Vue Js Tutorial (Introduction)














Vue Js is Progressive Javascript Framework for Front End Users.
There are different Types of Javascript Framework for front end users such as ReactJs, Angular.
If you are beginner and Start to learn javascript framework Vue Js is best for You.
Easy to understand , Easy to code.

Ok Let start,

3,4 Year back before when I start code. I use JQuery for Front end and I will show you different between Jquery and Vue js.


for Example

IN JQUERY
to set value between id username div

<div id="username"> </div>

<script>
$('#username').html('MG MG');
</script>

IN VUE JS

<div id="app"> 
<div>{{username}} </div>
<div>{{email}} </div>
<div>
<script>
var vue = new Vue({
el : "#app",
data : {
username : 'MG MG',
email :'example@mail.com'
}
})
<script>

Post a Comment

0 Comments