vue.js udemy
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<p>hellow world</p>
<div id="myapp">
<input type="text" v-on:input="changeTitle">
<h1>{{title}}</h1>
<h4>{{ subFunc() }}</h4>
</div>
JavaScript
new Vue({
el:'#myapp',
data : {
title: 'hello world',
},
methods: {
changeTitle(event){
this.title = event.target.value
},
subFunc:function(){
return "sub title goes here"
}
}
})