显示操作菜单.
$ npm install universal-action-sheet --save
show(options)
显示操作菜单。
属性 | 类型 | 默认值 | 描述 | 支持 |
---|---|---|---|---|
title | String | - | 菜单标题 | |
items | Array | - | 菜单按钮文字数组 | |
cancelButtonText | String | 取消 | 取消按钮文案 |
import ActionSheet from 'universal-action-sheet';
ActionSheet.show({
items: ['one', 'two', 'three'],
success: res => {
console.log(res.index);
},
fail: res => {
console.log(res.errMsg);
}
});