25 lines
520 B
Vue
Executable File
25 lines
520 B
Vue
Executable File
<template>
|
|
<div
|
|
class="card-block contain cursor-pointer flex group overflow-hidden relative"
|
|
>
|
|
<div class="absolute inset-0 flex items-center justify-center z-10 text-white text-lg w-full h-36 md:h-72 object-cover">
|
|
18 + Контент
|
|
</div>
|
|
<div class="blur-2xl flex flex-grow bg-indigo-300 w-full h-36 md:h-72 object-cover">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: {
|
|
entity: Object,
|
|
user: Object,
|
|
feed_id: Number,
|
|
},
|
|
|
|
}
|
|
</script>
|