mirror of
https://github.com/vuejs/core.git
synced 2024-11-22 04:51:10 +00:00
.. | ||
__tests__ | ||
src | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')