-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
40 lines (36 loc) · 1 KB
/
index3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<input type="text" v-model="name" />
<input type="text" id="surname" value="Snow" />
<button @click="saveSurname"> Save Surname </button><br/><br/>
<output>{{computedFullName}}</output>
</div>
</body>
<script>
let surname = "Snow";
var app= new Vue({
el:'#app',
data:{
name:'John',
},
computed:{
computedFullName: function(){
return this.name + ' ' + surname;
}
},
methods:{
saveSurname: function(){
surname = this.$el.querySelector('#surname').value;
}
}
});
</script>