check list 형태를 자주 쓰게 되어서 All 체크박스 컨트롤 방법을 코드로 남김 {{ group.name }} All {{ file.name }} openList(idx1): function { let target = document.getElementById('group_' + idx1); if (target.style.display == 'none') { target.style.display = block; } else { target.style.display = none; } }, checkAll: function (e, idx1) { const isChecked = e.target.checked; let that = this; this.groups[idx1].children.forEach(..