I am new to vue.js. I have this code:
<li class="list-inline-item me-3">
<h5
class="font-size-14"
data-toggle="tooltip"
data-placement="top"
title="From"
>
<label class="mt-3">From*</label><br>
<i class="bx bx-calendar me-1 text-muted">
<b-form-input class="no-border" :value="object.start_date" :disabled="!object.can_change" @input="object.start_date = $event"
id="example-input" type="date" placeholder="YYYY-MM-DD" autocomplete="off"></b-form-input>
</i>
</h5>
</li>
but the result is to show full time. I want to see the time without seconds how can I do this?