5ae7380b4a
See https://github.com/vuejs/vue-next/pull/2099 for details. |
||
---|---|---|
.. | ||
__tests__ | ||
src | ||
types | ||
api-extractor.json | ||
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')