mrr.sj.front/node_modules/@vue/runtime-dom
丁杰 1aa732ad02 初始化商家app代码 2026-03-24 11:45:13 +08:00
..
dist 初始化商家app代码 2026-03-24 11:45:13 +08:00
LICENSE 初始化商家app代码 2026-03-24 11:45:13 +08:00
README.md 初始化商家app代码 2026-03-24 11:45:13 +08:00
index.js 初始化商家app代码 2026-03-24 11:45:13 +08:00
package.json 初始化商家app代码 2026-03-24 11:45:13 +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')