-
+
{{ prependIcon }}
@@ -22,6 +22,10 @@ export default {
disabled: Boolean,
readonly: Boolean,
borderless: Boolean,
+ autofocus: {
+ type: Boolean,
+ default: true
+ },
bg: {
type: String,
default: 'bg'
diff --git a/components/ui/TextInputWithLabel.vue b/components/ui/TextInputWithLabel.vue
index d7500951..10deb8f6 100644
--- a/components/ui/TextInputWithLabel.vue
+++ b/components/ui/TextInputWithLabel.vue
@@ -1,7 +1,7 @@
@@ -14,7 +14,12 @@ export default {
type: String,
default: 'text'
},
- disabled: Boolean
+ disabled: Boolean,
+ placeholder: String,
+ autofocus: {
+ type: Boolean,
+ default: true
+ }
},
data() {
return {}