You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
517 B
19 lines
517 B
import { App } from 'vue';
|
|
import Layout from './layout';
|
|
import Sider from './Sider';
|
|
|
|
Layout.Sider = Sider;
|
|
|
|
/* istanbul ignore next */
|
|
Layout.install = function(app: App) {
|
|
app.component(Layout.name, Layout);
|
|
app.component(Layout.Header.name, Layout.Header);
|
|
app.component(Layout.Footer.name, Layout.Footer);
|
|
app.component(Layout.Sider.name, Layout.Sider);
|
|
app.component(Layout.Content.name, Layout.Content);
|
|
return app;
|
|
};
|
|
export default Layout as typeof Layout & {
|
|
readonly Sider: typeof Sider;
|
|
};
|