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