vue3-core/packages/runtime-dom
白雾三语 8f0472c9ab
fix(runtime-core): fix error when using cssvars with disabled teleport (#7341)
close #7342
2023-10-20 16:34:11 +08:00
..
__tests__ fix(runtime-core): fix error when using cssvars with disabled teleport (#7341) 2023-10-20 16:34:11 +08:00
src refactor: use symbol for private properties (#8681) 2023-08-22 16:57:15 +08:00
LICENSE
README.md
index.js
package.json release: v3.3.5 2023-10-20 11:50:49 +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')