1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-25 06:49:23 +01:00

Reformats code

This commit is contained in:
Amir Raminfar
2020-03-30 16:20:23 -07:00
parent 564d089172
commit 024dd22896
15 changed files with 81 additions and 84 deletions

View File

@@ -30,7 +30,7 @@ export default {
name: "Search",
data() {
return {
showSearch: false
showSearch: false,
};
},
mounted() {
@@ -45,12 +45,12 @@ export default {
},
methods: {
...mapActions({
updateSearchFilter: "SET_SEARCH"
updateSearchFilter: "SET_SEARCH",
}),
resetSearch() {
this.showSearch = false;
this.filter = "";
}
},
},
computed: {
...mapState(["searchFilter", "settings"]),
@@ -60,9 +60,9 @@ export default {
},
set(value) {
this.updateSearchFilter(value);
}
}
}
},
},
},
};
</script>