vue3-core/packages/runtime-dom
yangxiuxiu db374e54c9
fix(runtime-dom): `v-model` string/number coercion for multiselect options (#10576)
Co-authored-by: RicardoErii <‘1974364190@qq.com’>
Co-authored-by: yangchangtao <yangchangtao@kuaishou.com>
2024-03-28 22:09:16 +08:00
..
__tests__ fix(runtime-dom): `v-model` string/number coercion for multiselect options (#10576) 2024-03-28 22:09:16 +08:00
src fix(runtime-dom): `v-model` string/number coercion for multiselect options (#10576) 2024-03-28 22:09:16 +08:00
LICENSE
README.md
index.js
package.json release: v3.4.21 2024-02-28 12:12:15 +01:00

README.md

@vue/runtime-dom

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

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

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