<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>
<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>