source:
node_modules/@vue/runtime-dom/README.md@
57e58a3
Last change on this file since 57e58a3 was 57e58a3, checked in by , 4 months ago | |
---|---|
|
|
File size: 198 bytes |
Line | |
---|---|
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.