h()
는 가상 DOM 요소를 생성하는데 사용된다.h(
type: string | Component,
props?: object | null,
children?: Children | Slot | Slots
)
const app = createApp({
render() {
return h('div', { id: 'app' }, [
h('h1', 'Hello, Vue 3!'),
h('p', 'This is an example of using the h() function.')
])
}
});
app.mount('#app');
h()
를 통해 <div>
요소를 생성하고, 'app'이라는 id
속성을 부여한다.<h1>
과 <p>
요소가 자식 노드로 추가된다.