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.
 
 
 
 
underfin d4e9b19932
perf: only patch string style when value has changed (#1310)
5 years ago
..
__tests__ perf: only patch string style when value has changed (#1310) 5 years ago
src perf: only patch string style when value has changed (#1310) 5 years ago
types feat(types): update to Typescript 3.9 (#1106) 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 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.0.0-beta.14 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')