控制表格表头的显示: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>
网友评论