iview Table的表头隐藏

2021-09-06  本文已影响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>
上一篇下一篇

猜你喜欢

热点阅读