mirror of https://github.com/vuejs/core.git
ci / test (push) Waiting to run
Details
ci / continuous-release (push) Waiting to run
Details
size data / upload (push) Waiting to run
Details
close #13181 |
||
---|---|---|
.. | ||
__tests__ | ||
src | ||
LICENSE | ||
README.md | ||
index.js | ||
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')