This is hello world program for VueJS framework.
<html>
<body>
<div id="app">
<p>{{hello}}</p>
</div>
<script src="https://unpkg.com/vue"></script>
<script>
new Vue({
el: '#app',
data : {
hello : "hello VueJS world!!"
}
});
</script>
</body>
</html>
Output
