index.vue页面 -------------
methods: {
// 定义
warning (ptitle, pcontent) {
this.$warning({ title: ptitle, content: pcontent })
},
error (ptitle, pcontent) {
this.$error({ title: ptitle, content: pcontent })
}
// 使用
requestFailed (err) {
console.log(err)
this.warning('温馨提示', err)
}
}
效果: