<el-table :data="SubjectListData" header-align="center" size="mini" max-height="500" style="width: 100%"> 
    <el-table-column align="center" label="二维码" width="120">
        <template slot-scope="scope">
            <qrcode :value="`https://www.ccmapp.cn/pages/test-share/apps/page/seminar/seminar-list/seminar-list.html?id=${scope.row.id}&from=singlemessage`" :options="{ size: 100 }" >
            </qrcode>
        </template>
    </el-table-column>
</el-table>
import Qrcode from '@xkeshi/vue-qrcode'

export default {
    components: {
      "qrcode": Qrcode // 引入 打开终端 如果报错 就是没有安装qrcode  >npm install qrcode 即可
    },
    // ...
}

Logo

前往低代码交流专区

更多推荐