<el-table :data="noticeData" style=" 100%" :show-header="false">
<el-table-column prop="title" label="名称">
<template slot-scope="scope">
<div @click="viewDetail(scope.row)" style="cursor: pointer;">
{{scope.row.title}}
</div>
</template>
</el-table-column>
<el-table-column prop="createTime" label="日期" width="120">
</el-table-column>
</el-table>
参考:https://blog.csdn.net/qq_32864189/article/details/112215893