|
пре 3 недеља | |
---|---|---|
.. | ||
node_modules | пре 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')