source:
node_modules/@vue/runtime-dom/README.md@
3a74959
Last change on this file since 3a74959 was 57e58a3, checked in by , 4 months ago | |
---|---|
|
|
File size: 198 bytes |
Rev | Line | |
---|---|---|
[57e58a3] | 1 | # @vue/runtime-dom |
2 | ||
3 | ```js | |
4 | import { h, createApp } from '@vue/runtime-dom' | |
5 | ||
6 | const RootComponent = { | |
7 | render() { | |
8 | return h('div', 'hello world') | |
9 | }, | |
10 | } | |
11 | ||
12 | createApp(RootComponent).mount('#app') | |
13 | ``` |
Note:
See TracBrowser
for help on using the repository browser.