export function scrollToElement (element, option = {}) {
element.scrollIntoView({ behavior: 'smooth', ...option })
}
export function bodyScroll (yes) {
if (yes) {
document.body.classList.remove('body_no_scroll')
} else {
document.body.classList.add('body_no_scroll')
}
}