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.

13 lines
198 B

  1. # @vue/runtime-dom
  2. ```js
  3. import { h, createApp } from '@vue/runtime-dom'
  4. const RootComponent = {
  5. render() {
  6. return h('div', 'hello world')
  7. },
  8. }
  9. createApp(RootComponent).mount('#app')
  10. ```