learnin-some-vue/app.js

12 lines
162 B
JavaScript
Raw Normal View History

2018-04-13 14:54:53 +00:00
var app = new Vue({
el: '#app',
data: {
title: "Hello world."
2018-04-13 14:56:49 +00:00
},
methods:{
changeTitle(event){
this.title = event.target.value
}
2018-04-13 14:54:53 +00:00
}
})