Files
pmomusic/pmoupnp/webapp/node_modules/@vue/runtime-dom
Eric Coissac 2a9ca141f0 on redemare en Rust
This commit contains the following changes:
     M .gitignore
     A Cargo.lock
     A Cargo.toml
     A PMOMusic/Cargo.toml
     A PMOMusic/src/main.rs
     D README.md
     A Readme.md
2025-10-05 21:29:10 +02:00
..
2025-10-05 21:29:10 +02:00
2025-10-05 21:29:10 +02:00
2025-10-05 21:29:10 +02:00
2025-10-05 21:29:10 +02:00
2025-10-05 21:29:10 +02:00

@vue/runtime-dom

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

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

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