import { MessageBox } from 'element-ui'MessageBox('请输入邮箱', '提示', {
showInput: true,
inputValue: 'haha',
confirmButtonText: '确定',
cancelButtonText: '取消',
inputPattern: /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/,
inputErrorMessage: '邮箱格式不正确'
}).then(({ value }) => { console.log(value)
}).catch(() => {
})
}input框出不来怎么办啊
1 回答
幕布斯7119047
TA贡献1794条经验 获得超8个赞
this.$alert('这是一段内容', '标题名称', { confirmButtonText: '确定', callback: action => { this.$message({ type: 'info', message: `action: ${ action }` }); }
添加回答
举报
0/150
提交
取消