cineclub-site/front/layouts/default.vue

10 lines
163 B
Vue
Raw Normal View History

2022-04-03 01:20:53 +02:00
<template>
2022-04-03 01:20:54 +02:00
<div class="layout bg-gray-100">
<LayoutNavBar />
2022-07-11 01:24:00 +02:00
<div class="container">
2022-04-03 01:20:54 +02:00
<slot />
</div>
2022-08-27 16:34:48 +02:00
<LayoutFooter />
2022-04-03 01:20:53 +02:00
</div>
</template>