test02/node_modules/@vue/runtime-dom
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00
..
dist first commit 2024-08-13 10:11:19 +08:00
LICENSE first commit 2024-08-13 10:11:19 +08:00
README.md first commit 2024-08-13 10:11:19 +08:00
index.js first commit 2024-08-13 10:11:19 +08:00
package.json first commit 2024-08-13 10:11:19 +08:00

@vue/runtime-dom

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

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

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