-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.09 KB
/
index.html
File metadata and controls
58 lines (53 loc) · 1.09 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<title>Implementation of Batching</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#app {
height: 100%;
box-sizing: border-box;
justify-content: center;
align-items: center;
flex-direction: column;
display: none;
}
h1 {
font-size: 42px;
margin: 0;
}
p {
font-size: 20px;
margin: 10px 0 30px;
color: #aaa;
}
#name {
font-size: 28px;
}
button {
width: 159px;
height: 51px;
border: none;
outline: none;
border-radius: 8px;
background-color: #4067f2;
margin-top: 40px;
color: #fff;
font-size: 18px;
font-weight: 600;
cursor: pointer;
}
</style>
</head>
<body>
<div id="app">
<h1>배칭 테스트</h1>
<p>콘솔을 확인해주세요.</p>
<div id="name">{{ name }}</div>
<button @click="changeName">이름 변경하기</button>
</div>
</body>
</html>