Open
Description
<template>
<waterfall33 class="lesson" :col='3' :width="428" :gutterWidth="10" :data="images">
<template>
<div class="stu-video" v-for="(img) in images">
<video :src="img.url" style="width: 428px; height: 500px"></video>
</div>
</template>
</waterfall33>
</template>
<script>
import waterfall33 from 'vue-waterfall2'
export default {
name: "Waterfall2",
components: {waterfall33},
props: ['images']
}
</script>