How elment hides the form header

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>
Apr.02,2021
In

css, change the head class of table corresponding to element to display:none


you made a mistake and changed it to: show-header= "false"

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-7bf536-1dd04.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-7bf536-1dd04.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?