Pier-Jean's picture
Initial deploy: Docling Studio (local mode, port 7860)
5539271
import { computed } from 'vue'
import { useFeatureFlagStore, type FeatureFlag } from './store'
export function useFeatureFlag(flag: FeatureFlag) {
const store = useFeatureFlagStore()
return computed(() => store.isEnabled(flag))
}