<template v-if="hasSpecificProperty(col.prop, ['outputS3URL'])">
<el-table-column :key="`col${index}`" :prop="col.prop" :label="col.name" :width="col.width || 'auto'">
<template #default="scope">
<el-link :href="scope.row[col.prop]" target="_blank" :underline="false">
{{ showText(scope.row[col.prop], col.text) }}
</el-link>
</template>
</el-table-column>
</template>