mirror of https://github.com/vuejs/core.git
* types: update `TextareaHTMLAttributes` and `InputHTMLAttributes` add `InputTypeHTMLAttribute` (from `@types/react`) to `InputHTMLAttributes['type' ]` * chore: format --------- Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> |
||
---|---|---|
.. | ||
__tests__ | ||
src | ||
LICENSE | ||
README.md | ||
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')