How to override properties of sub-components of a component? #17058
Unanswered
chrissyast
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Why? Are you looking for https://vuetifyjs.com/en/components/autocompletes/ or https://vuetifyjs.com/en/components/combobox/ instead? Even if there was a way to remove readonly none of the other props are hooked up like in a combobox. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using
v-select
. Out of the box,v-select
s contain av-text-field
which hasreadonly
set to true but I want to override this.The key part of the source code seems to be at
I have created a component which extends VSelect but I don't know how to set the VTextField to
readonly: false
.vTextFieldRef
is initialised with no initial value and never seems to be set, so I don't know if it's possible to find it with this.$refs[something] (no refs show up in the Vue devtools either)Beta Was this translation helpful? Give feedback.
All reactions