Evan You f023d49a49 release: v3.2.42 3 years ago
..
__tests__ f67bb500b6 fix(runtime-dom): ensure customElement handles empty props correctly. (#6182) 3 years ago
src e4de623ea7 fix(types): support inferring injected properties in options api (#6804) 3 years ago
types bad3f3ce46 fix(types): stricter type condition for `EventHandlers` (#6855) 3 years ago
LICENSE 34989ef7fe chore: license 6 years ago
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 years ago
api-extractor.json c9bf7ded2e refactor(types): mark internal API exports and exclude from d.ts 6 years ago
index.js e05673f4d3 refactor: rename packages 7 years ago
package.json f023d49a49 release: v3.2.42 3 years ago

README.md

@vue/runtime-dom

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

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

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