@antmjs/vantui
Version:
一套适用于Taro3及React的vantui组件库
14 lines • 461 B
JavaScript
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;
}
export { isMulti, getIconURL };