svalavuo 2932879887 Dockerized solution 3 days ago
..
dist 2932879887 Dockerized solution 3 days ago
LICENSE 2932879887 Dockerized solution 3 days ago
README.md 2932879887 Dockerized solution 3 days ago
index.js 2932879887 Dockerized solution 3 days ago
package.json 2932879887 Dockerized solution 3 days ago

README.md

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  },
}

createApp(RootComponent).mount('#app')