Skip to content

Commit 1736426

Browse files
committed
[TRANSFER] transfer project owner
1 parent 86d8d89 commit 1736426

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ npm install --save @bachdgvn/vue-otp-input
1717
Basic usage:
1818

1919
```javascript
20-
import VieOtpInput from "@bachdgvn/vue-otp-input";
20+
import OtpInput from "@bachdgvn/vue-otp-input";
2121

22-
Vue.component("vie-otp-input", VieOtpInput);
22+
Vue.component("v-otp-input", OtpInput);
2323
```
2424

2525
```javascript
2626
<template>
2727
<div>
28-
<vie-otp-input
28+
<v-otp-input
2929
inputClasses="otp-input"
3030
:numInputs="4"
3131
separator="-"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@bachdgvn/vue-otp-input",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "A fully customizable, one-time password input component for the web built with Vue 2.x.",
55
"author": "Bach Duong <bachdgvn@gmail.com>",
6-
"repository": "https://github.com/vuvie/vue-otp-input",
6+
"repository": "https://github.com/bachdgvn/vue-otp-input",
77
"keywords": ["vueotpinput", "vue", "otp", "input", "otpinput"],
88
"license": "MIT",
99
"scripts": {

src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<vie-otp-input
3+
<v-otp-input
44
input-classes="otp-input"
55
separator="-"
66
:num-inputs="4"
@@ -12,12 +12,12 @@
1212
</template>
1313

1414
<script>
15-
import VieOtpInput from './components';
15+
import OtpInput from './components';
1616
1717
export default {
1818
name: 'App',
1919
components: {
20-
'vie-otp-input': VieOtpInput,
20+
'v-otp-input': OtpInput,
2121
},
2222
methods: {
2323
handleOnComplete(value) {

src/components/VieOtpInput.vue renamed to src/components/OtpInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const RIGHT_ARROW = 39;
2929
const DELETE = 46;
3030
3131
export default {
32-
name: 'VieOtpInput',
32+
name: 'OtpInput',
3333
components: {
3434
SingleOtpInput,
3535
},

src/components/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import VieOtpInput from './VieOtpInput.vue';
1+
import OtpInput from './OtpInput.vue';
22

3-
export default VieOtpInput;
3+
export default OtpInput;

0 commit comments

Comments
 (0)