Here is my unique div where the clockpicker library functions correctly.
<div class="input-group clockpicker">
<input type="text" class="form-control" value="18:00">
<span class="input-group-addon">
<span class="glyphicon glyphicon-time"></span>
</span>
</div>
However, when I added a v-if to the div like this:
<div class="input-group clockpicker" v-if="overtimeType==3">
The clock picker no longer displays when clicking on the input field. There are no errors in the console. Any thoughts on why this might be happening?
PS: Using v-show instead works perfectly fine.