mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { inject, ComputedRef } from 'vue';
|
|
|
|
// eslint-disable-next-line
|
|
export const TAB_STATUS_KEY = Symbol();
|
|
|
|
export function useTabStatus() {
|
|
return inject<ComputedRef<boolean> | null>(TAB_STATUS_KEY, null);
|
|
}
|