Evan You a07e7bf553 fix(custom-element): support early-set domProps for async custom elements 1 год назад
..
__tests__ a07e7bf553 fix(custom-element): support early-set domProps for async custom elements 1 год назад
src a07e7bf553 fix(custom-element): support early-set domProps for async custom elements 1 год назад
LICENSE 34989ef7fe chore: license 6 лет назад
README.md 8a99f903db style: format html&markdown files (#11531) 1 год назад
index.js e05673f4d3 refactor: rename packages 7 лет назад
package.json 6d4eb94853 feat(runtime-dom): Trusted Types compatibility (#10844) 1 год назад

README.md

@vue/runtime-dom

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

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

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