I've read anywhere even in the official docs and I only found that v-select
's items can only be disabled by setting the object's disable
to true like this...
{text: 'text1', disabled: true}, //disabled
{text: 'text2', disabled: false}, //enabled
{text: 'text2', disabled: true}, //disabled
But in my case, since I am having a dynamic form where in users can create a new form by clicking a button.
Are there any way to disable v-select
's item directly from the v-select
tag itself or perhaps there's a slot for it?