WIP Удалила лишнее

This commit is contained in:
Daria Golova
2022-11-18 16:40:16 +03:00
parent e2acc5a7a3
commit 875e6a2c6a
3 changed files with 3 additions and 13 deletions

View File

@@ -54,7 +54,6 @@ export default {
isActive: false,
someDetailsShown: true,
isOpenDescriptionCard: false,
cardSize: {},
};
},
computed: {
@@ -222,12 +221,6 @@ export default {
this.hideDescriptionCard();
this.setDefaultTheme();
},
writeCardSize() {
this.cardSize = {
width: this.$refs["eventCard"].getBoundingClientRect().width,
height: this.calculateCardHeight - 8,
};
},
},
watch: {
changeFormWasClosed: {
@@ -240,9 +233,6 @@ export default {
},
},
},
mounted() {
this.writeCardSize();
},
};
</script>