Skip to content

Commit 0e4dfb6

Browse files
author
vagrant
committed
lesson 1
1 parent 852e943 commit 0e4dfb6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

index.html

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

0 commit comments

Comments
 (0)