maxiaolong 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci
..
dist 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci
LICENSE 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci
README.md 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci
index.js 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci
package.json 38b89c928d Initial commit: Face detection and glasses recommendation system před 5 měsíci

README.md

@vue/runtime-dom

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

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

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