当前位置: 首页 > 文档资料 > Rax 中文文档 >

ActionSheet

优质
小牛编辑
126浏览
2023-12-01

显示操作菜单.

支持

安装

$ npm install universal-action-sheet --save

方法

show(options)

显示操作菜单。

参数

属性类型默认值描述支持
titleString-菜单标题
itemsArray-菜单按钮文字数组
cancelButtonTextString取消取消按钮文案

示例

import ActionSheet from 'universal-action-sheet';

ActionSheet.show({
  items: ['one', 'two', 'three'],
  success: res => {
    console.log(res.index);
  },
  fail: res => {
    console.log(res.errMsg);
  }
});