UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

9 lines 258 B
import { onMounted, shallowRef } from 'vue'; import { detectFlexGapSupported } from '../styleChecker'; export default () => { const flexible = shallowRef(false); onMounted(() => { flexible.value = detectFlexGapSupported(); }); return flexible; };