osm_my_commerce/pages/Horaires.vue

12 lines
224 B
Vue

<template>
<section class="section">
<h1>Horaires</h1>
<p>Vos horaires actuelles</p>
<ul>
<li v-for="h in $store.formConfig.hours" :key="h">
{{ h }}
</li>
</ul>
</section>
</template>