UNPKG

antdv-eoi

Version:

An enterprise-class UI design language and Vue-based implementation

9 lines 256 B
import { onMounted, ref } from 'vue'; import { detectFlexGapSupported } from '../styleChecker'; export default (function () { var flexible = ref(false); onMounted(function () { flexible.value = detectFlexGapSupported(); }); return flexible; });