I have a checkbox component defined like so:
let checkbox = this.$createElement(VCheckbox, {
props: {
hideDetails: true
}
});
In my code I can get a reference to this component. In other words I have access to this checkbox
variable. What I want is to set property programmatically. By property I mean this part of the component:
props: {
hideDetails: true
}
What I want is to set indeterminate
to true. Something like:
checkbox.setProperty('indeterminate', true);
But I'm unable to find in documenation anything related to my problem. So, how can I implement this?