UNPKG

create-iking-admin

Version:

金合技术中台脚手架

34 lines (28 loc) 755 B
/* * @Author: wfl * @LastEditors: wfl * @description: * @updateInfo: * @Date: 2022-07-29 11:45:14 * @LastEditTime: 2022-07-29 14:17:21 */ export const REDIRECT_NAME = 'Redirect'; export const PARENT_LAYOUT_NAME = 'ParentLayout'; export const PAGE_NOT_FOUND_NAME = 'PageNotFound'; export const EXCEPTION_COMPONENT = () => import('@/mainApp/views/sys-default/exception/Exception.vue'); /** * @description: default layout */ export const LAYOUT = () => import('@/mainApp/layouts/default/index.vue'); /** * @description: parent-layout */ export const getParentLayout = (_name?: string) => { return () => new Promise((resolve) => { resolve({ name: PARENT_LAYOUT_NAME, }); }); };