vue3-core/packages/runtime-dom
edison 23bc91ca59
fix(runtime-vapor): setting innerHTML should go through trusted types (#13825)
2025-09-24 16:56:15 +08:00
..
__tests__ fix(custom-element): ensure exposed methods are accessible from custom elements by making them enumerable (#13634) 2025-07-23 08:40:40 +08:00
src fix(runtime-vapor): setting innerHTML should go through trusted types (#13825) 2025-09-24 16:56:15 +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.19 2025-08-21 10:29:08 +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')