how to make the form header hidden by elment
it still doesn"t work to use show-header. Am I using it in the wrong place?
<el-table
:data="tableData"
tooltip-effect="dark"
show-header = false
style="width: 100%">
<el-table-column type="expand">
<template slot-scope="props">
<el-form label-position="centent" inline class="demo-table-expand">
<!-- table -->
<el-table
ref="multipleTable"
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
>
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column
prop="name">
</el-table-column>
<el-table-column
width="120">
<template slot-scope="scope">
<el-button @click="handleClick(scope.row)" type="text" size="small"></el-button>
<el-button type="text" size="small" class="removeCss"></el-button>
</template>
</el-table-column>
</el-table>
</el-form>
</template>
</el-table-column>
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column
label=""
prop="name">
</el-table-column>
<el-table-column
label=""
width="120">
<template slot-scope="scope">
<el-button @click="handleClick(scope.row)" type="text" size="small"></el-button>
<el-button type="text" size="small" class="removeCss"></el-button>
</template>
</el-table-column>
</el-table>