assert-component2.js 556 B

12345678910111213
  1. export function assertComponent2() {
  2. if (typeof my === 'undefined') {
  3. return;
  4. }
  5. var component2 = my.canIUse('component2');
  6. if (!component2) {
  7. console.log('项目未开启 component2,无法使用 Ant Design Mini 组件库');
  8. console.log('请在 IDE 中的 详情 > 项目配置 中,勾选 启用 component2 编译 。');
  9. console.log('参考文档 https://mini.ant.design/guide/migration-v2');
  10. throw new Error('Ant Design Mini 组件库需要依赖 component2 特性');
  11. }
  12. }
  13. assertComponent2();