-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuemode.html
43 lines (31 loc) · 988 Bytes
/
vuemode.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">
<title>booking vue mode</title>
<link rel="stylesheet" href="asset/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="root">
<div class="roomCounter container" id="asd">
<div class="rooms" id="room">
<label>تعداد اتاق:</label>
<div class="buttons" >
<button type="button" class="add">+</button>
<input type="number" id="rooms" min="1" value="1">
<button type="button" class="remove">-</button>
</div>
</div>
<hr>
<div class="roomDetail">
<peopel></peopel>
</div>
</div>
</div>
<script type="text/javascript" src="vue.js"></script>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="asset/bootstrap.min.js"></script>
<script src="main.js" ></script>
</body>
</html>