WebMusic/webapp/node_modules/@vue/runtime-dom
CNLuminous a6af28e4c5 submit 2025-11-04 15:15:28 +08:00
..
dist submit 2025-11-04 15:15:28 +08:00
LICENSE submit 2025-11-04 15:15:28 +08:00
README.md submit 2025-11-04 15:15:28 +08:00
index.js submit 2025-11-04 15:15:28 +08:00
package.json submit 2025-11-04 15:15:28 +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')