cineclub-site/front/components/socials/index.vue

14 lines
267 B
Vue
Raw Permalink Normal View History

2022-12-04 03:13:25 +01:00
<template>
<div :class="{ 'is-flex is-flex-wrap-wrap': !vertical }">
<SocialsFacebook />
<SocialsInstagram />
<SocialsNewsletter />
</div>
</template>
<script setup lang="ts">
defineProps({
vertical: { default: false, type: Boolean },
})
</script>