Merge pull request #428 from RitikPatni/patch-1

Added hello world in vuejs
This commit is contained in:
Mike Donaghy
2017-10-02 03:52:47 -05:00
committed by GitHub

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>