UNPKG

@europeana/portal

Version:
16 lines (15 loc) 374 B
export default { methods: { makeToast(message, options = {}) { const defaults = { autoHideDelay: 5000, isStatus: true, noCloseButton: true, solid: true, toastClass: 'brand-toast', toaster: 'b-toaster-bottom-left-dynamic' }; this.$root.$bvToast.toast(message, { ...defaults, ...options }); } } };