Evan You ba9a91c48c refactor: remove null comparisons 6 năm trước cách đây
..
__tests__ d318576d74 fix(runtime-dom): patch xlink attribute (#842) 6 năm trước cách đây
src ba9a91c48c refactor: remove null comparisons 6 năm trước cách đây
LICENSE 34989ef7fe chore: license 6 năm trước cách đây
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 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 5282ff0edb release: v3.0.0-alpha.9 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(RootComponent).mount('#app')