mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-08 09:30:06 +08:00
26 lines
1.1 KiB
Go
26 lines
1.1 KiB
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';
|
|
import ErrPrompt from './error-prompt/index.vue';
|
|
import OpDialog from './del-dialog/index.vue';
|
|
import TableSearch from './table-search/index.vue';
|
|
import TableSetting from './table-setting/index.vue';
|
|
import Tooltip from '@/components/tooltip/index.vue';
|
|
import CopyButton from '@/components/copy-button/index.vue';
|
|
import MsgInfo from '@/components/msg-info/index.vue';
|
|
export default {
|
|
install(app: App) {
|
|
app.component(LayoutContent.name, LayoutContent);
|
|
app.component(RouterButton.name, RouterButton);
|
|
app.component(ComplexTable.name, ComplexTable);
|
|
app.component(ErrPrompt.name, ErrPrompt);
|
|
app.component(OpDialog.name, OpDialog);
|
|
app.component(Tooltip.name, Tooltip);
|
|
app.component(CopyButton.name, CopyButton);
|
|
app.component(TableSearch.name, TableSearch);
|
|
app.component(TableSetting.name, TableSetting);
|
|
app.component(MsgInfo.name, MsgInfo);
|
|
},
|
|
};
|