Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1 #22

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open

1 #22

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e35e54f
lesson-5
iamshaunjp Sep 20, 2020
d6f84c2
lesson-6
iamshaunjp Sep 20, 2020
ba63142
lesson-7
iamshaunjp Sep 20, 2020
e18f3a2
lesson-8
iamshaunjp Sep 21, 2020
9a1608d
lesson-9
iamshaunjp Sep 21, 2020
9bab6bc
lesson-10
iamshaunjp Sep 21, 2020
a863199
lesson-1
iamshaunjp Sep 21, 2020
bf1d9f8
lesson-1
iamshaunjp Sep 22, 2020
8252a28
lesson-12
iamshaunjp Sep 22, 2020
e30e48c
lesson-13
iamshaunjp Sep 22, 2020
e9d95dd
lesson-14
iamshaunjp Sep 22, 2020
e7b9533
lesson-15
iamshaunjp Sep 22, 2020
7188a50
lesson-16
iamshaunjp Sep 22, 2020
3df4b24
lesson-17
iamshaunjp Sep 22, 2020
e4a2fee
lesson-19
iamshaunjp Sep 22, 2020
a2f0596
lesson-21
iamshaunjp Sep 22, 2020
e238f04
lesson-23
iamshaunjp Sep 23, 2020
7234ab6
lesson-24
iamshaunjp Sep 23, 2020
6e53c7a
lesson-26
iamshaunjp Sep 23, 2020
fa4b4a7
lesson-26
iamshaunjp Sep 23, 2020
90f3c3c
lesson-27
iamshaunjp Sep 23, 2020
84e0461
lesson-28
iamshaunjp Sep 23, 2020
2b71846
lesson-29
iamshaunjp Sep 23, 2020
371dacb
lesson-31
iamshaunjp Sep 23, 2020
4cf4370
lesson-31
iamshaunjp Sep 23, 2020
0002549
lesson-33
iamshaunjp Sep 24, 2020
105c454
lesson-34
iamshaunjp Sep 24, 2020
9068eee
lesson-35
iamshaunjp Sep 24, 2020
4bf3c82
lesson-36
iamshaunjp Sep 24, 2020
69c217a
lesson-36
iamshaunjp Sep 24, 2020
c8cb56d
lesson-37
iamshaunjp Sep 24, 2020
7f3480b
lesson-38
iamshaunjp Sep 24, 2020
4db2419
lesson-39
iamshaunjp Sep 24, 2020
3874063
lesson-40
iamshaunjp Sep 24, 2020
466c58a
lesson-41
iamshaunjp Sep 24, 2020
d26e178
lesson-42
iamshaunjp Sep 24, 2020
64bcb66
lesson-43
iamshaunjp Sep 25, 2020
88d05a0
lesson-43
iamshaunjp Sep 25, 2020
f5575f3
lesson-44
iamshaunjp Sep 25, 2020
c4579e1
1
LearnCodingEasy Jul 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md

This file was deleted.

3 changes: 3 additions & 0 deletions web-forms/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
23 changes: 23 additions & 0 deletions web-forms/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
19 changes: 19 additions & 0 deletions web-forms/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# web-forms

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions web-forms/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
Loading