Skip to content

Commit 9f11ee8

Browse files
committed
Update Repo Name & npm init
1 parent 962e3e6 commit 9f11ee8

File tree

6 files changed

+41
-6
lines changed

6 files changed

+41
-6
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# codigm-vue-beginner
1+
# goorm-vue-beginner
22
Sample Code Repostiory for Codigm's Vue Beginner Lecture

Diff for: lecture-2/hello-world/plain.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<title>Plain Javascript Examp,e</title>
6+
<title>Plain Javascript Example</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
</head>
99
<body>

Diff for: lecture-2/hello-world/vue.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<title>Vue.js Hello World</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
8+
<script src="../node_modules/vue/dist/vue.js"></script>
99
</head>
1010
<body>
1111
<div id="app">

Diff for: lecture-3/instance-example.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<title>Page Title</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
9-
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
8+
<script src="../node_modules/vue/dist/vue.js"></script>
109
</head>
1110
<body>
1211
<div id="app">
13-
{{data}}
12+
{{a}}
1413
</div>
1514
<script>
1615
let data={a:1};
1716
let vm = new Vue({
17+
el: "#app",
1818
data: data
1919
});
2020
</script>

Diff for: package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "goorm-vue-beginner",
3+
"version": "0.1.0",
4+
"description": "Source code for Vue beginner lecture on goorm EDU",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/lkaybob/codigm-vue-beginner.git"
12+
},
13+
"author": "",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/lkaybob/codigm-vue-beginner/issues"
17+
},
18+
"homepage": "https://github.com/lkaybob/codigm-vue-beginner#readme",
19+
"dependencies": {
20+
"vue": "^2.6.10"
21+
}
22+
}

0 commit comments

Comments
 (0)