mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 14:38:07 +08:00
12 lines
417 B
Go
12 lines
417 B
Go
|
import { type App } from 'vue';
|
||
|
import LayoutContent from './layout-content/index.vue';
|
||
|
import RouterButton from './router-button/index.vue';
|
||
|
import ComplexTable from './complex-table/index.vue';
|
||
|
export default {
|
||
|
install(app: App) {
|
||
|
app.component(LayoutContent.name, LayoutContent);
|
||
|
app.component(RouterButton.name, RouterButton);
|
||
|
app.component(ComplexTable.name, ComplexTable);
|
||
|
},
|
||
|
};
|