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

{{hello}}

https://unpkg.com/vue

new Vue({
el: '#app',
data : {
hello : "hello VueJS world!!"
}
});


This free site is ad-supported. Learn more