update title with changeTitle
This commit is contained in:
parent
bcbae5539e
commit
63f2d9f743
5
app.js
5
app.js
@ -2,5 +2,10 @@ var app = new Vue({
|
|||||||
el: '#app',
|
el: '#app',
|
||||||
data: {
|
data: {
|
||||||
title: "Hello world."
|
title: "Hello world."
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
changeTitle(event){
|
||||||
|
this.title = event.target.value
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id='app'>
|
<div id='app'>
|
||||||
|
<input type="text" v-on:input="changeTitle">
|
||||||
<p>{{ title }}</p>
|
<p>{{ title }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user