vue-stick
Version:
基于 vue 的瀑布流组件
19 lines • 468 B
HTML
<div ref="stickOuter" class="vue-stick-outer" :style="{
height: outerHeight + 'px'
}">
<div
class="vue-stick-item"
v-for="item in localList"
:key="item.id"
:ref="'widget-' + item.id"
:style="{
position: item.style.position,
visibility: item.style.visibility,
width: Math.round(item.style.width) + 'px',
top: Math.round(item.style.top) + 'px',
left: Math.round(item.style.left) + 'px'
}"
>
<slot v-bind:data="item.data" />
</div>
</div>