MES User 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago
..
dist 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago
LICENSE 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago
README.md 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago
index.js 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago
package.json 834f038b25 Release v1.0.0 - Stable MES System with complete features and bug fixes 5 months ago

README.md

@vue/runtime-dom

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

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

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