element ui 注意点
<el-table-column label="Author" width="110" align="center">
<template slot-scope="scope">
<span>{{ scope.row.author }}</span>
</template>
</el-table-column>
等价于:
<el-table-column label="Author" width="110" align="center" prop="author``">
</el-table-column>