edison 23bc91ca59 fix(runtime-vapor): setting innerHTML should go through trusted types (#13825) hai 7 meses
..
__tests__ 90573b06bf fix(custom-element): ensure exposed methods are accessible from custom elements by making them enumerable (#13634) hai 9 meses
src 23bc91ca59 fix(runtime-vapor): setting innerHTML should go through trusted types (#13825) hai 7 meses
LICENSE 34989ef7fe chore: license %!s(int64=6) %!d(string=hai) anos
README.md 8a99f903db style: format html&markdown files (#11531) hai 1 ano
index.js e05673f4d3 refactor: rename packages %!s(int64=7) %!d(string=hai) anos
package.json 56a7f9dd18 release: v3.6.0-alpha.2 hai 9 meses

README.md

@vue/runtime-dom

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

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

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