-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div id="app">
Hasil : {{ hasil }} <br>
<input v-model="angka1" type="number">
<input v-model="angka2" type="number">
<button @click="hasil=angka1+angka2">+</button>
<button @click="hasil=angka1-angka2">-</button>
<button @click="hasil=angka1*angka2">*</button>
<button @click="hasil=angka1/angka2">/</button>
</div>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script>
const app = Vue.createApp({
data(){
return {
angka1: 0,
angka2: 0,
hasil: 0,
}
}
})
app.mount("#app");
</script>
</body>
</html>