Added hello world in vuejs

This commit is contained in:
Ritik
2017-09-29 20:50:54 +05:30
committed by GitHub
parent f7fc734077
commit febac33f66

11
v/vue.js Normal file
View File

@@ -0,0 +1,11 @@
<div id="app">
<p>{{ message }}</p>
</div>
<script>
new Vue({
el: '#app',
data: {
message: 'Hello World!'
}
})
</script>