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