options.sjs 361 B

1234567891011121314151617
  1. var antmove_export = {};
  2. /* eslint-disable */
  3. var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster'];
  4. function getIconURL(icon) {
  5. if (PRESET_ICONS.indexOf(icon) !== -1) {
  6. return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png';
  7. }
  8. return icon;
  9. }
  10. antmove_export = {
  11. getIconURL: getIconURL
  12. };
  13. export default antmove_export;