monitoring/web/monit_web/node_modules/@vue/runtime-dom
qiangyanwen 2a13709dc8 testcase 2022-06-19 10:12:23 +08:00
..
dist testcase 2022-06-19 10:12:23 +08:00
LICENSE testcase 2022-06-19 10:12:23 +08:00
README.md testcase 2022-06-19 10:12:23 +08:00
index.js testcase 2022-06-19 10:12:23 +08:00
package.json testcase 2022-06-19 10:12:23 +08:00

README.md

@vue/runtime-dom

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

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

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