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')