const editorOpen = () => { noticeDialogRef.value.open("에디터 제목",false,"에디터 내용")} 이런 식으로 자식의 메서드를 호출하고 const open = (_title:"", _isViewer: false, _content:"") => { consoleLog("거래처 공지 open"); isOpen.value = true; title = _title; isViewer = _isViewer; contents = _content;}; 자식 메서드에서 매개변수를 이렇게 받을 수 있다. 이걸 JSON 객체로 주고 받는 방법으로 변경하게 되면 const editorOpen = () => { noticeDialogRef.v..