diff --git a/src/components/input/input.vue b/src/components/input/input.vue index abb79d2..b8b080b 100644 --- a/src/components/input/input.vue +++ b/src/components/input/input.vue @@ -70,7 +70,7 @@ props: { type: { validator (value) { - return oneOf(value, ['text', 'textarea', 'password']); + return oneOf(value, ['text', 'textarea', 'password', 'url', 'email', 'date']); }, default: 'text' }, -- libgit2 0.21.4