How to make an input field read only based on Vue data?
For example:
<select class="form-control" 
        id="selectCategory" 
        :disabled="cat_id >= 
            1" 
        name="cat_id">
I want to make the field read only but not disabled. How can I achieve this?
 
     
     
     
     
     
    