1let currentTeamUsers = this.team.user_ids;
2let userToRemove = this.selectedUsersMulTeams.map(selectedUsersMulTeams => selectedUsersMulTeams.user_id);
3let userIndex = currentTeamUsers.indexOf(userToRemove)
4currentTeamUsers.splice(userIndex, 1);
1// Syntax
2array.splice(index, deleteCount)
3
4// Example 1
5array1 = ['one', 'two', 'three'];
6array1.splice(1, 1);
7console.log(array1);
8// Expected output: ['one', 'three']
9
10// Example 2
11array2 = [{id:1}, {id:2}, {id:3}];
12array2.splice(2, 1);
13console.log(array2);
14// Expected output: [{id:1}, {id:2}]
1data() {
2 return{
3 inputs: [{}]
4 }
5 },
6 methods: {
7 add() {
8 this.inputs.push({
9 medicien: ''
10 });
11 },
12 remove(index) {
13 this.inputs.splice(index, 1);
14 }
15 },