CEES-manage/src/components/Page/index.ts

11 lines
410 B
TypeScript
Raw Normal View History

2021-10-20 14:32:09 +08:00
import { withInstall } from '/@/utils';
import pageFooter from './src/PageFooter.vue';
import pageWrapper from './src/PageWrapper.vue';
export const PageFooter = withInstall(pageFooter);
//【issues/411】ReferenceError: Cannot access 'pageWrapper' before initialization
export const PageWrapper = setTimeout(()=>withInstall(pageWrapper));
2021-10-20 14:32:09 +08:00
export const PageWrapperFixedHeightKey = 'PageWrapperFixedHeight';