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