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.

main.js 247B

12345678910
  1. /**
  2. * Used only for development (via `npm run dev`).
  3. *
  4. * This file is useful for testing your component in isolation from Node-RED.
  5. */
  6. import { createApp } from 'vue'
  7. import UILed from './components/UILed.vue'
  8. createApp(UILed).mount('#app')