【发布时间】:2016-06-26 07:12:43
【问题描述】:
我收到 Sweet Alert 的确认提示消息,但当我点击确认消息时,我无法删除任务。
methods: {
confirmDelete: function(index) { //index is passed by the button
//var self = this;
swal({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!',
closeOnConfirm: true
}, function(isConfirm) {
if (isConfirm) {
this.contacts.splice(index, 1);
swal(
'Deleted!',
'Your file has been deleted.',
'success'
);
return true;
} else {
return false;
}
}.bind(this));
}
}
【问题讨论】:
标签: javascript jquery vue.js