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')