@europeana/portal
Version:
Europeana Portal
16 lines (15 loc) • 374 B
JavaScript
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 });
}
}
};