mabaoyi e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전
..
dist e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전
LICENSE e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전
README.md e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전
index.js e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전
package.json e7fd89213c 编写账户设置页面,配置多语言依赖 10 달 전

README.md

@vue/runtime-dom

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

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

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