vue3-core/packages/runtime-dom
webfansplz 183e4e6152
refactor(types): use template literal types insteads of any (#4166)
2022-10-26 04:31:09 -04:00
..
__tests__ fix(runtime-core): custom-element: ensure number casting of camelCase props. (fix: #5374) (#5377) 2022-10-22 11:20:46 +02:00
src refactor(types): use template literal types insteads of any (#4166) 2022-10-26 04:31:09 -04:00
types
LICENSE
README.md
api-extractor.json
index.js
package.json

README.md

@vue/runtime-dom

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

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

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