using velocity scroll animation in vue is not performed and there is no error prompt.
let toElement = document.querySelector(target);
let container = document.querySelector("body");
Velocity(toElement, "scroll", {
    container: container, 
    duration: 500, 
    offset: -60, 
    easing: "ease-out"
});
toElement target element, container container element
