16 lines
416 B
JavaScript
16 lines
416 B
JavaScript
|
export default {
|
||
|
error(e, context) {
|
||
|
// Build the notification text from error response
|
||
|
let err = e.message
|
||
|
if (e.response && e.response.data && e.response.data.message) {
|
||
|
err += '<br/>' + e.response.data.message
|
||
|
}
|
||
|
|
||
|
// Fire a notification
|
||
|
context.$notify({
|
||
|
type: 'error',
|
||
|
title: 'Error',
|
||
|
text: err
|
||
|
})
|
||
|
}
|
||
|
}
|