info(msg: string): void { ElMessageBox.alert(msg,'message.box.title'); } // 警告提示 wraning(msg: string): void { ElMessageBox.alert(msg, 'message.box.title', { type: 'warning' }); } // 成功提示 success(msg: string): void { ElMessageBox.alert(msg, 'message.box.title', { ty...
ElMessageBox } from 'element-plus' onMounted(() => { ElMessageBox({ title: '选择时间没有ui效果', message: h(ElDatePicker, { style: { width: '100%', }, placeholder: '时间', clearable: false, type: 'datetime', valueFormat: 'YYYY-MM-DD HH:mm:ss', modelValue: "", 'onUpdate...
Element Plus Playground Steps to reproduce 1,点击el-select,随便选择一个选项 2,此时弹出comfirm框,随便点击确认或者取消 3,el-select不关闭,持续focus What is Expected? el-select关闭,不要focus What is actually happening? el-select不关闭,持续focus ...