maxiaolong 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr
..
dist 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr
LICENSE 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr
README.md 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr
index.js 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr
package.json 38b89c928d Initial commit: Face detection and glasses recommendation system vor 1 Jahr

README.md

@vue/runtime-dom

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

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

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