TKO/services/frontend/components/Gallery.vue
2025-02-08 14:50:44 +01:00

32 lines
No EOL
955 B
Vue

<template>
<!-- <v-row>-->
<!-- <template v-for="(image,imgIdx) in imageLayout" :key="imgIdx">-->
<!-- <v-col :cols="image.cols">-->
<!-- <v-img-->
<!-- :src="`https://picsum.photos/500/300?image=${image.cols * 20}`"-->
<!-- height="100%"-->
<!-- cover-->
<!-- ></v-img>-->
<!-- </v-col>-->
<!-- <v-col v-if="image.children" class="d-flex flex-column" cols="6">-->
<!-- <v-row>-->
<!-- <v-col v-for="(children,childIdx) in image.children" :key="childIdx" :cols="children.cols">-->
<!-- <v-img-->
<!-- :src="`https://picsum.photos/500/300?image=${children.cols + childIdx}`"-->
<!-- height="100%"-->
<!-- cover-->
<!-- ></v-img>-->
<!-- </v-col>-->
<!-- </v-row>-->
<!-- </v-col>-->
<!-- </template>-->
<!-- </v-row>-->
</template>
<script setup lang="ts">
</script>
<style scoped>
</style>