mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
22 lines
532 B
TypeScript
22 lines
532 B
TypeScript
import { App } from "vue"
|
|
import control from "./src/Control.vue"
|
|
import nodePanel from "./src/NodePanel.vue"
|
|
import dataDialog from "./src/DataDialog.vue"
|
|
|
|
export const Control = Object.assign(control, {
|
|
install(app: App) {
|
|
app.component(control.name, control)
|
|
}
|
|
})
|
|
|
|
export const NodePanel = Object.assign(nodePanel, {
|
|
install(app: App) {
|
|
app.component(nodePanel.name, nodePanel)
|
|
}
|
|
})
|
|
|
|
export const DataDialog = Object.assign(dataDialog, {
|
|
install(app: App) {
|
|
app.component(dataDialog.name, dataDialog)
|
|
}
|
|
}) |