Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dirk Alders 97486731b5 Dashboard 2 - EG-West 4 ay önce
..
dist Dashboard 2 - EG-West 4 ay önce
LICENSE Dashboard 2 - EG-West 4 ay önce
README.md Dashboard 2 - EG-West 4 ay önce
index.js Dashboard 2 - EG-West 4 ay önce
package.json Dashboard 2 - EG-West 4 ay önce

README.md

@vue/runtime-dom

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

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

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