temp save vue transition stuff

This commit is contained in:
vabene1111
2021-01-08 22:31:48 +01:00
parent 4af5a4e96e
commit 976cedd536
12 changed files with 789 additions and 467 deletions

12
cookbook/static/Toast.js Normal file
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
})
}
}
})