maxiaolong 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois
..
dist 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois
LICENSE 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois
README.md 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois
index.js 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois
package.json 38b89c928d Initial commit: Face detection and glasses recommendation system il y a 5 mois

README.md

@vue/runtime-dom

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

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

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