Bakhtina Sofya 441b76b729 first commit | il y a 3 semaines | |
---|---|---|
.. | ||
dist | il y a 3 semaines | |
LICENSE | il y a 3 semaines | |
README.md | il y a 3 semaines | |
index.js | il y a 3 semaines | |
package.json | il y a 3 semaines |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')