Element header issu

topic description

how elment hides the form header

it still doesn"t feel good 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>
Apr.02,2021

 <el-table
    :data="tableData"
    tooltip-effect="dark"
    :show-header = "isShow"
    style="width: 100%">              
</el-table>
export default {
  data() {
   return {
    isShow: false
   }
  }
}
Menu