Please note that, according to HTML specs, the select tag in HTML doesn’t have a readonly attribute.
However, in general case, I’d go with something like this:
<input class="form-control" id="selectCategory" :readonly="cat_id >= 1">
Basically, the documentation says that if an attribute value evaluates to false, then the attribute being omitted. See here for further details.