File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ $ npm i vue-verification-input -S
37
37
3 . template
38
38
39
39
``` html
40
- <VerificationCodeInput
40
+ <verification-code-input
41
41
:wrong =" [Boolean]"
42
42
:type =" [String]"
43
43
:item-class =" [String]"
@@ -47,7 +47,7 @@ $ npm i vue-verification-input -S
47
47
:item-wrong-class =" [String]"
48
48
@deleteEvent =" deleteEvent"
49
49
@finishEvent =" finishEvent"
50
- / >
50
+ ></ verification-code-input >
51
51
```
52
52
53
53
| Props | 描述 | 默认值 | 必须/可选 |
Original file line number Diff line number Diff line change 1
1
import VerificationCodeInput from './VerificationCodeInput.vue'
2
2
3
3
if ( typeof window !== 'undefined' && window . Vue ) {
4
- Vue . component ( 'vue-input-code ' , VerificationCodeInput ) ;
4
+ Vue . component ( 'VerificationCodeInput ' , VerificationCodeInput ) ;
5
5
}
6
6
7
7
export default VerificationCodeInput ;
You can’t perform that action at this time.
0 commit comments