import { Controller } from '@hotwired/stimulus'; /* 셀렉트 박스에서 옵션값을 선택하면 해당 value값에 맞게 스크롤이 이동합니다 */ export default class extends Controller { handle() { let item = document.querySelector(this.element.value); item.scrollIntoView({ behavior: 'smooth' }); } }