doc.yeswiki.pro/node_modules/@vue/runtime-dom
2023-05-20 19:38:02 +03:00
..
dist initial vitepress site with basic nav 2023-05-20 19:38:02 +03:00
index.js initial vitepress site with basic nav 2023-05-20 19:38:02 +03:00
LICENSE initial vitepress site with basic nav 2023-05-20 19:38:02 +03:00
package.json initial vitepress site with basic nav 2023-05-20 19:38:02 +03:00
README.md initial vitepress site with basic nav 2023-05-20 19:38:02 +03:00

@vue/runtime-dom

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

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

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