mint-ui 点击弹出

HTML部分

上传附件

JS 部分

data() {
    return {
      //点击弹出数据
      sheetVisible: false,
      actions: [],
    }
  },
methods:{
  takePhoto() {
       console.log('taking photo');
     },

     openAlbum() {
       console.log('opening album');
     }
},
 mounted() {
    this.actions = [{
      name: '拍照',
      method: this.takePhoto
    }, {
      name: '从相册中选择',
      method: this.openAlbum
    }]

你可能感兴趣的:(mint-ui 点击弹出)