vue3-yuanma/packages/runtime-dom
Evan You 1c7d737cc8 feat: support v-bind .prop & .attr modifiers
Also allows render function usage like the following:

```js
h({
  '.prop': 1, // force set as property
  '^attr': 'foo' // force set as attribute
})
```
2021-07-16 14:30:49 -04:00
..
__tests__ feat: support v-bind .prop & .attr modifiers 2021-07-16 14:30:49 -04:00
src feat: support v-bind .prop & .attr modifiers 2021-07-16 14:30:49 -04:00
types feat(types/ide): support find definition for jsx tags, events (#3570) 2021-07-01 13:49:16 -04:00
api-extractor.json refactor(types): mark internal API exports and exclude from d.ts 2020-04-30 17:04:35 -04:00
index.js refactor: rename packages 2018-10-26 15:44:50 -04:00
LICENSE chore: license 2019-10-28 11:15:17 -04:00
package.json release: v3.1.5 2021-07-16 12:38:01 -04:00
README.md chore: update runtime-dom/README example to latest signature (#693) [ci skip] 2020-02-04 09:24:29 -05:00

@vue/runtime-dom

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

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

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