svalavuo 2932879887 Dockerized solution 3 日 前
..
dist 2932879887 Dockerized solution 3 日 前
LICENSE 2932879887 Dockerized solution 3 日 前
README.md 2932879887 Dockerized solution 3 日 前
index.js 2932879887 Dockerized solution 3 日 前
package.json 2932879887 Dockerized solution 3 日 前

README.md

@vue/runtime-dom

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

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

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