easy-ms
Results
1
comments of
easy-ms
I'm using toast with own plugin to handle errors from API. Here's my solution that work. `plugins/axios.js` ``` export default function ({ $axios, $toast }) { $axios.onError((error) => { $toast.error(error.response.data)...