mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
21 lines
438 B
JavaScript
21 lines
438 B
JavaScript
/*
|
||
* loading 组件
|
||
*
|
||
* @Author: 1024创新实验室-主任:卓大
|
||
* @Date: 2022-07-22 20:33:41
|
||
* @Wechat: zhuda1024
|
||
* @Email: lab1024@163.com
|
||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
*/
|
||
import { useSpinStore } from "/@/store/modules/system/spin";
|
||
|
||
export const SmartLoading = {
|
||
show: () => {
|
||
useSpinStore().show();
|
||
},
|
||
|
||
hide: () => {
|
||
useSpinStore().hide();
|
||
},
|
||
};
|