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