source: node_modules/@vue/runtime-dom/README.md@ 57e58a3

Last change on this file since 57e58a3 was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago

Initial commit

  • Property mode set to 100644
File size: 198 bytes
Line 
1# @vue/runtime-dom
2
3```js
4import { h, createApp } from '@vue/runtime-dom'
5
6const RootComponent = {
7 render() {
8 return h('div', 'hello world')
9 },
10}
11
12createApp(RootComponent).mount('#app')
13```
Note: See TracBrowser for help on using the repository browser.