7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { inject, Ref } from '../../adapter-vue';
|
|
import { IsClickableContextKey } from '../context';
|
|
|
|
export function useIsClickableContext() {
|
|
return inject<Ref<boolean>>(IsClickableContextKey);
|
|
}
|