osm_my_commerce/pages/Horaires.vue

14 lines
300 B
Vue

<template>
<section class="section">
<h1>Horaires</h1>
<p>Vos horaires actuelles</p>
<ul v-if="store.state.hours">
<li v-for="(h,index) in store.state.hours">
<div :key="index" class="hour">
{{ h }}
</div>
</li>
</ul>
</section>
</template>