11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
/**
|
|
* Used only for development (via `npm run dev`).
|
|
*
|
|
* This file is useful for testing your component in isolation from Node-RED.
|
|
*/
|
|
import { createApp } from 'vue'
|
|
|
|
import UILed from './components/UILed.vue'
|
|
|
|
createApp(UILed).mount('#app')
|