You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Evan You e077e6f5f3 workflow: disable threads during tests 3 years ago
..
__tests__ workflow: disable threads during tests 3 years ago
src fix(build): ensure BaseTransition functions can be tree-shaken 3 years ago
types chore: run format 3 years ago
LICENSE chore: license 6 years ago
README.md chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 years ago
api-extractor.json refactor(types): mark internal API exports and exclude from d.ts 5 years ago
index.js init (graduate from prototype) 7 years ago
package.json release: v3.2.47 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')