forked from tushargugnani/learningVueJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.conditionals.html
43 lines (42 loc) · 1.05 KB
/
3.conditionals.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
41
42
43
<!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">
<h3> Using v-if and v-else directive</h3>
<div v-if="count > 10">
Count is greater than 10
</div>
<div v-else-if="count == 10">
Count is 10
</div>
<div v-else>
Count is less than 10
</div>
<h3> Using v-show directive</h3>
<div v-show="count > 10">
Count is greater than 10
</div>
<div v-show="count == 10">
Count is 10
</div>
<div v-show="count < 10">
Count is less than 10
</div>
</div>
</body>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
count: 10
}
});
</script>
</html>