Skip to content

Commit 9975247

Browse files
committed
01
1 parent 4e5230b commit 9975247

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>뷰 기초 익히기</title>
8+
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
9+
</head>
10+
<body>
11+
<div id="app">
12+
{{ name }}
13+
</div>
14+
<script>
15+
new Vue({
16+
el: '#app',
17+
data: {
18+
name: '코지 코더'
19+
}
20+
})
21+
</script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)