removeFromList (id) {
      const position = this.list.findIndex(element => element.id == id)

      if (position > -1) {
        this.list.splice(position, 1)