Bolshakova Anna ab21a11190 lab | hai 1 mes | |
---|---|---|
.. | ||
dist | hai 1 mes | |
LICENSE | hai 1 mes | |
README.md | hai 1 mes | |
index.js | hai 1 mes | |
package.json | hai 1 mes |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')