| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/annonces/templates/yootheme/js/ |
Upload File : |
import UIkit from 'uikit';
import { isRtl, once, ready, swap } from 'uikit-util';
import { Header, Sticky } from './header';
UIkit.component('Header', Header);
UIkit.mixin(Sticky, 'sticky');
if (isRtl) {
const mixin = {
created() {
this.$props.pos = swap(this.$props.pos, 'left', 'right');
},
};
UIkit.mixin(mixin, 'drop');
UIkit.mixin(mixin, 'tooltip');
}
once(document, 'uikit:init', () => {
const { $theme: { i18n = {} } = {} } = window;
for (const component in i18n) {
UIkit.mixin({ i18n: i18n[component] }, component);
}
});
ready(() => {
const { $load = [], $theme = {} } = window;
function load(stack, config) {
stack.length && stack.shift()(config, () => load(stack, config));
}
load($load, $theme);
});