vue3-core/packages/runtime-dom
Tycho fee669764f
fix(types): add fallback stub for DOM types when DOM lib is absent (#11598)
2024-08-13 22:06:10 +08:00
..
__tests__ fix(custom-element): delete prop on attribute removal 2024-08-08 18:37:54 +08:00
src fix(types): add fallback stub for DOM types when DOM lib is absent (#11598) 2024-08-13 22:06:10 +08:00
LICENSE
README.md style: format html&markdown files (#11531) 2024-08-07 10:57:18 +08:00
index.js
package.json release: v3.5.0-beta.1 2024-08-08 23:31:46 +08: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')