Vue使用Message box

文章描述:

Vue使用mint-ui Message box 弹出让用户操作确定与取消

引入

import { MessageBox } from 'mint-ui';

 

使用

MessageBox.confirm('确定执行此操作?').then(action => {
	// 确定操作
	console.log('确定')
    }, () => {
	// 取消操作
	console.log('取消')
})

 

发布时间:2022/11/29

发表评论