Vuejs Hello world
<html>
<title>Hello - world</title>
<head>
<script src="vue.min.js"></script>
</head>
<body>
<div id="appking">
<h1>{{msg1}}</h1>
</div>
<script>
new Vue({
el:'#appking',
data:{
msg1:'Hello World Vuejs King.!!'
}
})
</script>
</body>
</html>
<title>Hello - world</title>
<head>
<script src="vue.min.js"></script>
</head>
<body>
<div id="appking">
<h1>{{msg1}}</h1>
</div>
<script>
new Vue({
el:'#appking',
data:{
msg1:'Hello World Vuejs King.!!'
}
})
</script>
</body>
</html>
0 comments:
Post a Comment