dalphyx / vue-headroom

Headroom for Vuejs
128 stars 16 forks source link

How to use scroller prop? #17

Closed l2aelba closed 6 years ago

l2aelba commented 6 years ago

Can you give me an example how to use scroller ?

<headroom :scroller="...."></headroom>

Thanks thanks :D

jdvivar commented 6 years ago

Check the code for the prop definition: https://github.com/dalphyx/vue-headroom/blob/master/src/headroom.vue#L42

You need to provide a function that returns the object were you want headroom to listen for scroll events. The default function returning the window object is usually ok. So by default you probably don't need to use the :scroller prop.

l2aelba commented 6 years ago

Aha thanks. Closed