DIR: /proc/1784574/task/1784574/cwd/node_modules/@vue/runtime-dom/ |
Current File : //proc/1784574/task/1784574/cwd/node_modules/@vue/runtime-dom/README.md |
# @vue/runtime-dom ```js import { h, createApp } from '@vue/runtime-dom' const RootComponent = { render() { return h('div', 'hello world') }, } createApp(RootComponent).mount('#app') ``` |