JavaScript getElementByID from Array [closed]

Hi I am trying to get div from API array of clicked index by using getElementById as shown in the code, but its not working

can anyone help me

advance thanks

**API Array**
address:Array[3]
 0:Object
 1:Object
 2:Object

 **HITL Code**
 <div class="col-lg-4 col-md-6 col-sm-12 mt-3" v-for="(address, index) in address"
 :key="index" id="address-display">

  **JS Code**
  this.address[index].document.querySelector('#address-display')