@click="onClick"
methods: {
onClick() {
this.myVueMeth1();
this.myVueMeth2();
document.forms[0].submit();
},
},
computed: {
document() {
return document;
},
},
return fetch(`/api/items/create/`)
.then(response => response.json())
.catch((err) => {
window.console.error(err);
throw err;
});
});
Зачем Microsoft службы телеметрии
что он может с этими знаниями сделать
this.items.forEach((item) => {
this.teams.forEach((team) => {
if (item.team_id === team.id) {
if (team.items) {
team.items.push(item);
} else {
team.items = [item];
}
}
});
});
this.teams.forEach(team => {
team.items = [];
});