Commit 344a6c4ef114585005730b27b7486f829f9654ec

Authored by 梁灏
1 parent 5b143a2b

fixed #5422

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/components/input/input.vue
... ... @@ -85,7 +85,7 @@
85 85 props: {
86 86 type: {
87 87 validator (value) {
88   - return oneOf(value, ['text', 'textarea', 'password', 'url', 'email', 'date', 'number']);
  88 + return oneOf(value, ['text', 'textarea', 'password', 'url', 'email', 'date', 'number', 'tel']);
89 89 },
90 90 default: 'text'
91 91 },
... ...