forked from jlopvi/curso_vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
computed.html
28 lines (28 loc) · 889 Bytes
/
computed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Propiedades Computadas</title>
</head>
<body>
<div id="app">
<computed-properties></computed-properties>
<computed-properties-get-set></computed-properties-get-set>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="./components/computedComponents/ComputedProperties.js"></script>
<script src="./components/computedComponents/ComputedPropertiesGetSet.js"></script>
<script>
let vm = new Vue({
el: '#app',
data () {
return {
title: 'Computed Properties'
}
}
})
</script>
</body>
</html>