ray-template/src/utils/vue/effectDispose.ts
2023-11-14 10:42:48 +08:00

31 lines
589 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-11-10
*
* @workspace ray-template
*
* @remark 今天也是元气满满撸代码的一天
*/
import { getCurrentScope, onScopeDispose } from 'vue'
import type { AnyFC } from '@/types/modules/utils'
/**
*
* @param fc effect 作用域卸载时需执行函数
*
* @remark 返回 true 表示获取到 effect 作用域并且卸载false 表示未存在 effect 作用域
*/
export function effectDispose(fc: AnyFC) {
if (getCurrentScope()) {
onScopeDispose(fc)
return true
}
return false
}