Skip to content

Commit

Permalink
fix vue component export
Browse files Browse the repository at this point in the history
  • Loading branch information
roblen45 committed Aug 12, 2024
1 parent 69a1782 commit 22d32ac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@5minds/node-red-dashboard-2-processcube-dynamic-form",
"version": "1.0.16",
"version": "1.0.17",
"description": "The ui component for the ProcessCube dynamic-form",
"keywords": [
"processcube",
Expand Down
2 changes: 1 addition & 1 deletion resources/ui-dynamic-form.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion ui/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
/* Exports of all of the components in this node */
export { default as DynamicForm } from './components/DynamicForm.vue'
import DynamicForm from './components/DynamicForm.vue'

export {
DynamicForm
}

export default {
'ui-dynamic-form': DynamicForm
}

0 comments on commit 22d32ac

Please sign in to comment.