vue-gl-actionsheet

0.1.1 • Public • Published

VActionSheet

引入方式:

import { VActionSheet } from "vue-gl-actionsheet";

Vue.use(VActionSheet);

属性:


属性名 类型 描述
menus Objiect menus: {gaodeMap: "高德地图",baiduMap: "百度地图",iosMap: "苹果地图"}
onConfirm Function 接受点击的item的值,根据值进行具体操作,完成后隐藏隐藏ActionSheet和蒙层区
onCancel Function 点击蒙层区和“取消”隐藏ActionSheet和蒙层区

使用:

this.$vactionsheet.show({
  menus: this.menus,
  onConfirm: index => this.onConfirm(index),
  onCancel: () => this.onCancel()
});
onConfirm和onCancel函数:
onCancel() {
  this.$vactionsheet.hide();  //隐藏
},
onConfirm(index) {
  alert(index);  //具体操作
}

Readme

Keywords

none

Package Sidebar

Install

npm i vue-gl-actionsheet

Weekly Downloads

5

Version

0.1.1

License

none

Unpacked Size

31.8 kB

Total Files

13

Last publish

Collaborators

  • goodloving