DOM에 삽입할 때 Vue 컴파일 컴파일된 요소를DOM그러나 그것은 문서와 같이 미리 정의된 위치가 아닌 임의의 장소에 삽입될 것이다... var res = Vue.compile('{{ msg }}') new Vue({ data: { msg: 'hello' }, render: res.render, staticRenderFns: res.staticRenderFns }) 모든 접근 방법V-for,V-if/show사전 정의된 요소도 필요하기 때문에 작동하지 않는다. 이런 걸 해봤는데... document.getElementById('elPai').insertAdjacentHTML('beforeend', Vue.compile('{{ msg }}')); '렌더'와 'StaticRenderFns'를 포함하는 개체를..