UNPKG

@antmjs/vantui

Version:

一套适用于Taro3及React的vantui组件库

20 lines (19 loc) 569 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getIconURL = getIconURL; exports.isMulti = isMulti; function isMulti(options) { if (options == null || options[0] == null) { return false; } return Array.isArray(options) && Array.isArray(options[0]); } var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments']; function getIconURL(icon) { if (PRESET_ICONS.indexOf(icon) !== -1) { return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png'; } return icon; }