XiaoYu 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ
..
dist 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ
LICENSE 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ
README.md 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ
index.js 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ
package.json 5fe0c4f818 feat: 用户信息持久化&默认设置 1 gadu atpakaļ

README.md

@vue/runtime-dom

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

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

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