maxiaolong 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前
..
dist 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前
LICENSE 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前
README.md 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前
index.js 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前
package.json 38b89c928d Initial commit: Face detection and glasses recommendation system 5 ヶ月 前

README.md

@vue/runtime-dom

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

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

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