fixed header on scroll vuejs

Solutions on MaxInterview for fixed header on scroll vuejs by the best coders in the world

showing results for - "fixed header on scroll vuejs"
Alice
06 Oct 2020
1<script src="//unpkg.com/vue@latest/dist/vue.js"></script>
2<div id="app">
3  <div class="spacer">Welcome</div>
4  <div class="a-box"></div>
5  <sticky-top top="20" :scroll-y="scrollY"></sticky-top>
6  <div class="a-box"></div>
7</div>