osm_my_commerce/pages/Horaires.vue

14 lines
300 B
Vue
Raw Normal View History

2020-12-17 12:09:28 +01:00
<template>
<section class="section">
<h1>Horaires</h1>
<p>Vos horaires actuelles</p>
2021-01-22 13:45:28 +01:00
<ul v-if="store.state.hours">
<li v-for="(h,index) in store.state.hours">
<div :key="index" class="hour">
{{ h }}
</div>
</li>
</ul>
2020-12-17 12:09:28 +01:00
</section>
</template>