?修改確認提示框文字樣式修改,使用message屬性修改:
例:
js代碼:
this.$msgbox({title: '確定要刪除嗎?',message: this.$createElement('p', null, [this.$createElement('span', { style: 'color: red' }, '該素材一旦刪除,用戶端引用的地方將無法正常顯示,請謹慎操作。')]),showCancelButton: true,confirmButtonText: '確定',cancelButtonText: '取消'
}).then(() => {});