MintUI的MessageBox的用法

第一步引入 javascript

import { MessageBox } from 'mint-ui';
 
第二步若是點擊肯定按鈕執行的函數要加回調函數
adoptHandle() {
        MessageBox({
        title: '肯定採納懸賞該回答?',
        message: '懸賞金額5元+8積分',
        showCancelButton: true,
        })
        .then(action => {
          if (action === 'confirm') {
            this.downadopt = !this.downadopt;
          }
        });
      },
相關文章
相關標籤/搜索