forked from tushargugnani/learningVueJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9.cached-computed-properties.html
37 lines (37 loc) · 1.03 KB
/
9.cached-computed-properties.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
<!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" /><br/>
<button @click="saveSurname"> Save Surname </button><br/><br/>
<output>{{computedFullName}}</output>
</div>
</body>
<script type="text/javascript">
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>
</html>