Fix background color bug

This commit is contained in:
Ramon Wenger 2018-09-17 09:20:08 +02:00
parent a522f9117c
commit 8ab7877401
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@
created() {
this.$store.dispatch('setSpecialContainerClass', 'red');
},
beforeDestroy() {
this.$store.dispatch('setSpecialContainerClass', '');
}
}
</script>