From 63017998be27e8a2782a34a99ee6849d1898a9a4 Mon Sep 17 00:00:00 2001 From: getive Date: Wed, 6 Mar 2019 19:07:13 +0800 Subject: [PATCH] Update input.vue --- src/components/input/input.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/input.vue b/src/components/input/input.vue index 5a1d40a..51da625 100644 --- a/src/components/input/input.vue +++ b/src/components/input/input.vue @@ -85,7 +85,7 @@ props: { type: { validator (value) { - return oneOf(value, ['text', 'textarea', 'password', 'url', 'email', 'date']); + return oneOf(value, ['text', 'textarea', 'password', 'url', 'email', 'date', 'number']); }, default: 'text' }, -- libgit2 0.21.4