{
type: 'body',
props: null,
children: [
{
type: 'h1',
props: null,
children: [{ type: 'text', text: 'header' }]
},
{
type: 'a',
props: { href: '#' },
children: [{ type: 'text', text: 'link' }]
}
]
}
]
};
뷰는 화면을 조작할 때 가상 DOM으로 조작합니다. 예를 들어, <a> 태그의 텍스트가 변경되면 해당 부분의 속성 값만 변경합니다.