在 Vue 中使用 $confirm 弹出框时,可以通过在 $confirm 对象中传入一个包含 checkbox 的 options 对象来使用 checkbox。
下面是一个使用 $confirm 弹出框并包含 checkbox 的示例:
this.$confirm({
title: '标题',
message: '确定要执行此操作吗?',
showCancelButton: true,
confirmButtonText: '确定',
cancelButtonText: '取消',
checkbox: {
label: '记住选择',
},