Revert "temp save vue transition stuff"

This reverts commit 976cedd536.
This commit is contained in:
vabene1111
2021-01-09 23:11:37 +01:00
parent 976cedd536
commit 6acf4bb831
12 changed files with 467 additions and 789 deletions

View File

@ -0,0 +1,12 @@
let toast_mixin = Vue.mixin({
methods: {
makeToast: function (title, message, variant = null) {
this.$bvToast.toast(message, {
title: title,
variant: variant,
toaster: 'b-toaster-top-center',
solid: true
})
}
}
})