mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2026-02-11 10:21:23 +08:00
7 lines
276 B
TypeScript
7 lines
276 B
TypeScript
const Login = () => import('./login/index.vue');
|
|
const NoPermission = () => import('./exception/403.vue');
|
|
const NotFound = () => import('./exception/404.vue');
|
|
const ServiceError = () => import('./exception/500.vue');
|
|
|
|
export { Login, NoPermission, NotFound, ServiceError };
|