2021-04-13 20:23:29 +02:00
|
|
|
import { Directive } from 'vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mounted(src, binding, vn) {
|
|
|
|
//const query = binding.value;
|
|
|
|
|
|
|
|
const header = src.children[0];
|
2021-04-13 20:34:56 +02:00
|
|
|
const currentStickyTop = getComputedStyle(src).getPropertyValue('--stickyTop') || '0px';
|
2021-07-19 06:00:29 +02:00
|
|
|
src.style.setProperty('--stickyTop', `calc(${currentStickyTop} + ${header.offsetHeight}px)`);
|
2021-04-13 20:23:29 +02:00
|
|
|
header.style.setProperty('--stickyTop', currentStickyTop);
|
|
|
|
header.style.position = 'sticky';
|
|
|
|
header.style.top = 'var(--stickyTop)';
|
|
|
|
header.style.zIndex = '1';
|
|
|
|
},
|
|
|
|
} as Directive;
|