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

13 lines
267 B
Vue

<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>