Evan You e6e2c58234 fix(runtime-dom/ssr): properly handle xlink and boolean attributes 6 năm trước cách đây
..
__tests__ c07751fd36 refactor: adjust `createApp` related API signatures 6 năm trước cách đây
src e6e2c58234 fix(runtime-dom/ssr): properly handle xlink and boolean attributes 6 năm trước cách đây
LICENSE 34989ef7fe chore: license 6 năm trước cách đây
README.md 360f3b4f37 types: improve type exports 6 năm trước cách đây
api-extractor.json b2d269a651 build: use api-extractor for type rollup 6 năm trước cách đây
index.js e05673f4d3 refactor: rename packages 7 năm trước cách đây
jsx.d.ts 54bb820f73 types: update jsx support (#587) 6 năm trước cách đây
package.json d293876c34 release: v3.0.0-alpha.4 6 năm trước cách đây

README.md

@vue/runtime-dom

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

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

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