Evan You d875de54e9 fix(runtime-dom): setting innerHTML when patching props should go through trusted types 1 vuosi sitten
..
__tests__ 506c4c53fd fix(custom-element): delete prop on attribute removal 1 vuosi sitten
src d875de54e9 fix(runtime-dom): setting innerHTML when patching props should go through trusted types 1 vuosi sitten
LICENSE 34989ef7fe chore: license 6 vuotta sitten
README.md 8a99f903db style: format html&markdown files (#11531) 1 vuosi sitten
index.js e05673f4d3 refactor: rename packages 7 vuotta sitten
package.json 8c3fdd1a7d release: v3.5.0-beta.3 1 vuosi sitten

README.md

@vue/runtime-dom

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

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

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