index.ts 532 B

12345678910111213141516171819202122
  1. import { App } from "vue"
  2. import control from "./src/Control.vue"
  3. import nodePanel from "./src/NodePanel.vue"
  4. import dataDialog from "./src/DataDialog.vue"
  5. export const Control = Object.assign(control, {
  6. install(app: App) {
  7. app.component(control.name, control)
  8. }
  9. })
  10. export const NodePanel = Object.assign(nodePanel, {
  11. install(app: App) {
  12. app.component(nodePanel.name, nodePanel)
  13. }
  14. })
  15. export const DataDialog = Object.assign(dataDialog, {
  16. install(app: App) {
  17. app.component(dataDialog.name, dataDialog)
  18. }
  19. })