mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
export const spinValue = ref(false)
|
|
|
|
/**
|
|
*
|
|
* @param bool has spin
|
|
*
|
|
* @remark 使用 spin 全屏加载效果工具函数
|
|
*/
|
|
export const useSpin = (bool: boolean) => (spinValue.value = bool)
|