I'm trying to align items on the same line. (See screenshot). I want opening hours at the same point on the list. I got data from database and use vue to displayed that data.
This is the way I display opening hours and days. So how I can make that hours are the same point of the list, so there is no throws like image below?
<ul class="display-items"
v-for="item in opendays_hours">
<li class="display-item" v-if="item">
{{item.day}} {{item.times}}
</li>
</ul>


