Evan You 8080c38323 chore: avoid v-cloak test warning 6 سال پیش
..
__tests__ 8080c38323 chore: avoid v-cloak test warning 6 سال پیش
src 0ed147d336 fix(runtime-dom): v-cloak should be removed after compile on the root element (#893) 6 سال پیش
LICENSE 34989ef7fe chore: license 6 سال پیش
README.md 1b2878d80f chore: update runtime-dom/README example to latest signature (#693) [ci skip] 6 سال پیش
api-extractor.json b2d269a651 build: use api-extractor for type rollup 6 سال پیش
index.js e05673f4d3 refactor: rename packages 7 سال پیش
jsx.d.ts 54bb820f73 types: update jsx support (#587) 6 سال پیش
package.json de81faf00a release: v3.0.0-alpha.10 6 سال پیش

README.md

@vue/runtime-dom

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

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

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