I wanna make url with choosen settings
const settings = this.getSettings();//returns object
Object.entries(settings).forEach(([key, value]) => {
this.$router.push({ query: { ...this.$route.query, key: value } }); //why i can't access key here?
});