t-comm
Version:
专业、稳定、纯粹的工具库
29 lines (28 loc) • 658 B
TypeScript
export declare type AppOptionsType = {
Vue: any;
App: any;
VueRouter?: any;
Vuex?: any;
VueLazyLoad?: any;
routerMap?: Array<any>;
vxModule?: Object;
vxModuleGetter?: Object;
beforeStart?: Function;
i18n?: any;
routerMode?: 'hash' | 'history';
projectMixins?: any;
noDependMixins?: boolean;
loginType: string;
loginFunction?: Function;
uinHandler?: Function;
SimpleVueRouter?: boolean;
prerender?: boolean;
notfound?: string;
vue3Router?: {
createRouter: Function;
createWebHashHistory: Function;
};
vue3Vuex?: {
createStore: Function;
};
};