File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,59 @@ export default {
4545
4646```
4747
48+ ## Props
49+ ``` js
50+
51+ /**
52+ * Default value.
53+ */
54+ default: {
55+ type: [String , Number ],
56+ required: false
57+ },
58+
59+ /**
60+ * Input placeholder.
61+ */
62+ placeholder: {
63+ type: String ,
64+ required: false
65+ },
66+
67+ /**
68+ * Minimum value.
69+ */
70+ min: {
71+ type: [String , Number ],
72+ required: false
73+ },
74+
75+ /**
76+ * Maximum value.
77+ */
78+ max: {
79+ type: [String , Number ],
80+ required: false
81+ },
82+
83+ /**
84+ * Currency prefix.
85+ */
86+ currency: {
87+ type: String ,
88+ required: true
89+ },
90+
91+ /**
92+ * Thousand separator type.
93+ */
94+ separator: {
95+ type: String ,
96+ required: false
97+ },
98+
99+ ```
100+
48101## License
49102
50103Vue-Numeric is open-sourced software licensed under the [ MIT license] ( http://opensource.org/licenses/MIT )
You can’t perform that action at this time.
0 commit comments