mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 06:28:06 +08:00
0d084861e0
#### What this PR does / why we need it? #### Summary of your change #### Please indicate you've done the following: - [ ] Made sure tests are passing and test coverage is added if needed. - [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). - [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed.
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);
|
|
},
|
|
};
|