Tuesday, May 31, 2016

VueJs Hello-World Example 1

<html>
    <head>
    <script src="vue.min.js"></script>
    </head>
    <body>
            <div id="app">
                    <h1>{{message}}</h1>
            </div>
            <script>
                new Vue({
                    el:'#app',
                    data:{
                        message:'Hello World Vuejs King.!!'
                    }
                })
            </script>
    </body>
</html>

No comments:

Post a Comment