UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

21 lines (14 loc) 371 B
const SUPPORT_MAP = { 'css.var': '--a:0', 'css.env': 'top:env(a)', 'css.constant': 'top:constant(a)', }; function cssSupports(css) { return window.CSS && CSS.supports && (CSS.supports(css) || CSS.supports.apply(CSS, css.split(':'))); } export function canIUse(key) { if (SUPPORT_MAP[key]) { return cssSupports(SUPPORT_MAP[key]); } return false; }