我想在this.$confirm
提供的项目中使用Element-ui
工具,但是我找不到文档上的任何属性来更改此确认对话框的宽度。
例如,我尝试使用className
或width
使其正常工作,但没有一个成功。
this.$confirm('Successful', {
confirmButtonText: 'confirm',
type: 'success',
center: true,
showClose: false,
showCancelButton: false,
width: '200px'
}).then(() => {
this.$emit('closeDialog', 1)
}).catch(() => {
// cancel handler
})