mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-18 21:11:19 +02:00
11 lines
236 B
JavaScript
11 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;
|
|
},
|
|
},
|
|
});
|