<el-table
ref="multipleTableRef"
:data="processingData.data.data"
table-layout="auto"
>
<el-table-column
type="selection"
width="50"
>
</el-table-column>
<!-- :fixed="(itemIn.type == 'editButton') ? 'right' : null" -->
<el-table-column v-for="itemIn in JSON.parse(processingData.structure.columns)" :key="itemIn.title"
:prop="itemIn.field"
:label="itemIn.title"
:align="itemIn.align"
:width="itemIn.width"
>
<template #default="scope">
<template v-if="itemIn.type == 'text'">
{{ testtest('hello') }}
</template>
</el-table-column>
</el-table>