mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-30 09:24:46 +08:00
23 lines
543 B
TypeScript
23 lines
543 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);
|
|
}
|
|
});
|