canIUse

用来查询某个方法chameleon是否支持。调用此方法,并传入你想知道是否支持的方法名。

使用示例

  1. cml.canIUse('showToast').then(() => {
  2. // 支持
  3. }, () => {
  4. // 不支持
  5. };