baianat / verte

🎨 A Color picker component. Built from the bottom to work with Vue.js.
https://baianat.github.io/verte/
MIT License
181 stars 42 forks source link

:disabled="disabled" not working #73

Open Ronak-maker opened 3 years ago

Ronak-maker commented 3 years ago

not able to disable color picker

ShetlandJ commented 3 years ago

Here is our solution (stripped back for example):

    <div :class="{'disabled': isDisabled}">
        <verte /> 
    </div>
.disabled {
    pointer-events: none;
}