Sangil's blog

https://github.com/ChoiSangIl Admin

vue toast editor document allowed 오류 DEV / WEB

2020-11-30 posted by sang12


vue에서 모달 컴포넌트를 하나 띄워놓고, 게시글을 눌렀을때마다 모달의 toast editor의 값을 

this.$refs.toastuiEditor.invoke('insertText', '게시글')로 변경해주었다. 그러니 아래와 같이 오류를 뿜어낸다..  

DOMException: Failed to execute 'appendChild' on 'Node': Only one element on document allowed.

해결 방법으로는 초기화를 해줘야 되나 해서 this.$refs.toastuiEditor.invoke('reset'); 으로 insert하기전에 초기화를 해줬더니 정상적으로 진행이 됐다.

REPLY