Удалила лишние data() и computed в компонентах

This commit is contained in:
Daria Golova
2022-10-14 10:36:21 +03:00
parent 74a8e19037
commit a87c67d526
3 changed files with 0 additions and 6 deletions

View File

@@ -16,7 +16,6 @@
<script>
export default {
name: "HeaderInputs",
props: {},
data() {
return {
selectedFilter: "Календарь",
@@ -24,7 +23,6 @@ export default {
isOpen: false,
};
},
computed: {},
methods: {
changeState() {
this.isOpen = !this.isOpen;

View File

@@ -5,9 +5,6 @@
<script>
export default {
name: "ArrowButton",
data() {
return {};
},
};
</script>