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