node-red-contrib-uibuilder
Version:
Easily create web UI's for Node-RED using any (or no) front-end library. VueJS and bootstrap-vue included but change as desired.
25 lines (24 loc) • 853 B
JavaScript
/** Describes the dependencies for each library-specific template
* Note that the first entry will be the default.
* THE OBJECT NAME MUST BE THE SAME AS THE FOLDER NAME
*/
module.exports = {
vue: {
'name': 'VueJS & bootstrap-vue',
'folder': 'vue',
'dependencies': [ 'vue', 'bootstrap-vue' ],
'description': 'The default template since uibuilder v2. Uses VueJS and bootstrap-vue.'
},
'vue-simple': {
'name': 'Simple VueJS',
'folder': 'vue-simple',
'dependencies': [ 'vue', 'bootstrap-vue' ],
'description': 'Simplest VueJS and bootstrap-vue template.'
},
blank: {
'name': 'Blank template, no framework',
'folder': 'blank',
'dependencies': [ ],
'description': 'You can use this if you do not want to use any framework at all.'
},
}