Hello to all, welcome to therichpost.com. In this post, I am telling you Vue Js basic example code structure. Today I heard about Vue Js and I coded it and I liked Vue Js code and its simple and clean. You just need to add Vue Js library link and write its code and run.
Vue Js is the good competitor of Angularjs.
Here is the working code example and you can this into your html file:
<div id=”app”>
{{ message }}
</div>
<script src=”https://cdn.jsdelivr.net/npm/vue”></script>
<script
var app = new Vue({
el: ‘#app’, // el stands for element
data: {
message: ‘Hello Vue!’
}
})
</script>
There are so many tricky code in VueJs and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
Recent Comments