Skip to content

Commit 3cd815f

Browse files
committed
Initial commit
0 parents  commit 3cd815f

File tree

8 files changed

+72
-0
lines changed

8 files changed

+72
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.3.0

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Single Page Applications with Vue.js
2+
3+
> Notes from Pluralsight [course](https://app.pluralsight.com/library/courses/vue-js-single-page-applications/table-of-contents)
4+
5+
## Environment Setup - Build Process
6+
7+
### Project Files
8+
9+
Project [src](https://github.com/bstavroulakis/vue-spa)
10+
11+
![git-modules](course-images/git-modules.png "git-modules")
12+
13+
### Package Management
14+
15+
Use `npm init -y` to start a project accepting defaults.
16+
17+
Course is using this version of vue:
18+
19+
```shell
20+
npm install [email protected]
21+
```

course-images/git-modules.png

275 KB
Loading

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Vue SPA</title>
7+
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
8+
</head>
9+
10+
<body>
11+
</body>
12+
13+
</html>

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "vue-pluralsight",
3+
"version": "1.0.0",
4+
"description": "> Notes from Pluralsight [course](https://app.pluralsight.com/library/courses/vue-js-single-page-applications/table-of-contents)",
5+
"scripts": {
6+
"test": "echo \"Error: no test specified\" && exit 1"
7+
},
8+
"keywords": [],
9+
"author": "",
10+
"license": "MIT",
11+
"dependencies": {
12+
"vue": "^2.4.2"
13+
}
14+
}

0 commit comments

Comments
 (0)