美文网首页
iview Table的表头隐藏

iview Table的表头隐藏

作者: 安北分享 | 来源:发表于2021-09-06 17:53 被阅读0次

控制表格表头的显示:show-header 属性

  <Table
         :columns="columns1"
         :data="data1"
         :show-header="false"
         size="small">
         <template
           slot-scope="{ row }"
           slot="cameraName"
         >
           <strong> <a
             href="javascript:(void(0));"
             style="color:#ffffff;"
             @click="switchVideo(row)" >{{ row.cameraName }}</a></strong>
         </template>
       </Table>

相关文章

网友评论

      本文标题:iview Table的表头隐藏

      本文链接:https://www.haomeiwen.com/subject/hpiziltx.html