Skip to content

Instantly share code, notes, and snippets.

View aznh's full-sized avatar
🔥
Focusing

Jason Jin aznh

🔥
Focusing
View GitHub Profile
@aznh
aznh / message-box_01-basic.js
Last active June 8, 2021 09:39
element-ui MessageBox to Dialog
export default {
methods: {
openMessageBox () {
this.$confirm('This will permanently delete the file. Continue?', 'Warning', {
confirmButtonText: 'OK',
cancelButtonText: 'Cancel',
type: 'warning'
}).then(() => {
this.$message({
type: 'success',