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