.. | ||
dist | ||
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')
.. | ||
dist | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
}
}
createApp(RootComponent).mount('#app')