comparison client/src/application/lib/errors.js @ 585:ef307bd6b5d8

refac: restructured client application To make the application more accessible for developers, the structure was reorganized. Instead of sticking to technical terminology, the application terminology is according to the domain: I.e. "map" contains everything regarding map (including store).
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 07 Sep 2018 11:13:56 +0200
parents
children ca628dce90dd
comparison
equal deleted inserted replaced
584:8b66a10aaf8a 585:ef307bd6b5d8
1 /** facade to wrap calls to vue2-toastr */
2 import app from "../../main";
3
4 const displayError = ({ title, message }) => {
5 app.$toast.error({
6 title: title,
7 message: message
8 });
9 };
10
11 export { displayError };