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.
 
 
 
 
Ramnath Shenoy 40bdd51bf5
chore: update Vuex status (#1054) [ci skip]
5 years ago
..
__tests__ fix(runtime-dom/v-on): support event.stopImmediatePropagation on multiple listeners 5 years ago
src perf(core): use `startsWith` instead of `indexOf` (#989) 5 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 build: use api-extractor for type rollup 6 years ago
index.js init (graduate from prototype) 7 years ago
jsx.d.ts Merge remote-tracking branch 'github/master' into changing_unwrap_ref 5 years ago
package.json release: v3.0.0-beta.4 5 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')