IOTConnect-Web/node_modules/@vue/runtime-dom
2024-05-09 09:49:52 +08:00
..
dist Initial commit 2024-05-09 09:49:52 +08:00
index.js Initial commit 2024-05-09 09:49:52 +08:00
LICENSE Initial commit 2024-05-09 09:49:52 +08:00
package.json Initial commit 2024-05-09 09:49:52 +08:00
README.md Initial commit 2024-05-09 09:49:52 +08:00

@vue/runtime-dom

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

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

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