Skip to content

Commit

Permalink
feat(input-password): created input-password
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoabreudev committed Nov 20, 2019
1 parent 9ff8278 commit 5e336f3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/_inputs/InputPassword.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<a-input-password placeholder="input password" />
</template>

<script src="./js/InputPassword.js"></script>
Empty file.
6 changes: 6 additions & 0 deletions src/views/MockCustomFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<h3>Input Phone</h3>
<input-phone></input-phone>
<hr />
<h3>Input Password</h3>
<input-password></input-password>
<hr />
<h3>Upload</h3>
<upload v-bind="optionsUpload" />
</div>
Expand All @@ -26,6 +29,8 @@
import InputEnum from '../components/_inputs/InputEnum.vue'
import InputZipCode from '../components/_inputs/InputZipCode.vue'
import InputPhone from '../components/_inputs/InputPhone.vue'
import InputPassword from '../components/_inputs/InputPassword.vue'
import Upload from '../components/_inputs/Upload.vue'
export default {
name: 'MockCustomFields',
Expand All @@ -35,6 +40,7 @@
InputEnum,
InputZipCode,
InputPhone,
InputPassword,
Upload
},
data: () => {
Expand Down

0 comments on commit 5e336f3

Please # to comment.