readme.md 375 字节
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# uni-image-menu

使用示例:
```
import uniImageMenu from 'uni_modules/uni-image-menu/js_sdk/uni-image-menu.js';
uniImageMenu.show({
	list:[{
			"img": "/static/sharemenu/wechatfriend.png",
			"text": "微信好友"
		},
		{
			"img": "/static/sharemenu/wechatmoments.png",
			"text": "微信朋友圈"
		}],
	cancelText:param.cancelText
}, e => {
	console.log(e)
})
```