unsupervised_learning_simul.../node_modules/@vue/runtime-dom
2023-09-15 21:56:16 +02:00
..
dist refactoring and cleanup 2023-09-15 21:56:16 +02:00
index.js refactoring and cleanup 2023-09-15 21:56:16 +02:00
LICENSE refactoring and cleanup 2023-09-15 21:56:16 +02:00
package.json refactoring and cleanup 2023-09-15 21:56:16 +02:00
README.md refactoring and cleanup 2023-09-15 21:56:16 +02:00

@vue/runtime-dom

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

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

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