Categories
Uncategorized VueJS

Hello World

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

Leave a comment

Design a site like this with WordPress.com
Get started