vuejs2 데이터에 하위 구성 요소 동적 삽입($compile 또는 v-html 남용 없음) 새로운 vuejs 컴포넌트를 미리 정의하지 않은 HTML 블록 내의 임의의 지점에 즉시 삽입하고 싶습니다. 다음은 제가 하려는 일을 보여주는 약간 조작된 예입니다. Vue.component('child', { // pretend I do something useful template: '--><--' }) Vue.component('parent', { data() { return { input: 'lorem', text: 'Lorem ipsum dolor sit amet.Lorem ipsum!' } }, template: ` Search: This inserts the child component but doe..