mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-02 08:30:07 +03:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
export const navbar = (Alpine) => ({
|
|
init: function () {
|
|
Alpine.bind(this.$root, this.root);
|
|
},
|
|
root: {
|
|
['@scroll.window.debounce.10ms'](event) {
|
|
this.$store.nav.scroll.atTop = window.scrollY < 40 ? true : false;
|
|
},
|
|
},
|
|
});
|