How does the element table table cycle through a div?

such a table wants to appear a QR code under each button "Wechat QR code". Press the current comment div when calling the plug-in method, all the QR codes go below the first button. How to implement the next button?

 <el-table-column label="" width="200%">
    <template slot-scope="scope">
      <el-popover
        placement="bottom"
        title=""
        trigger="hover">
        <!--<div v-show="flag" id="qrcode" ref="qrcode" ></div>-->
        <div slot="reference" class="name-wrapper" style="display: inline-block">
          <el-button size="small" type="danger" style="margin-top:10px" class="chat">
            <a style="color: -sharpfff;" @mouseover="selectStyle" @mouseout="selectOut"></a>
          </el-button>
        </div>
      </el-popover>
    </template>
  </el-table-column>

call the plug-in QR code method

  let qrcode = new QRCode("qrcode",{
      width: 100,    // 
      height: 100,   // 
      text: "http://www.cpglib.com/wx/index?shopId="+scope.row.shopId,   // 
    })

try putting the div of-sharpqrcode in slot?


encapsulated as a component
access dom with this.$refs.XX or this.$el

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36765-2c00b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36765-2c00b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?