Skip to content

Commit

Permalink
--the form split into vue components.
Browse files Browse the repository at this point in the history
--card number mask added
--cvv number mask added
  • Loading branch information
muhammed committed Oct 28, 2019
1 parent 69f54da commit 29a4839
Show file tree
Hide file tree
Showing 59 changed files with 23,650 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
27 changes: 19 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# Created by https://www.gitignore.io/api/sass
# Edit at https://www.gitignore.io/?templates=sass
.DS_Store
node_modules
/dist

### Sass ###
.sass-cache/
*.css.map
*.sass.map
*.scss.map
# local env files
.env.local
.env.*.local

# End of https://www.gitignore.io/api/sass
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,32 @@ A fantastic credit card form with smooth and sweet micro-interactions. Includes
See Live: https://codepen.io/JavaScriptJunkie/pen/YzzNGeR

![](demo.gif)


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

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

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

### Run your unit tests
```
npm run test:unit
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions 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

1 comment on commit 29a4839

@mariapiwow98
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello.. I m very new to this, but extremely interested in learning how it works.. how would I be able to use your code on my own site?

Please sign in to comment.