<el-table-column label="狀態" prop="State">
<template slot-scope="scope">
<font v-if="scope.row.State === 'online'">在線</font>
<font v-else-if="scope.row.State === 'offline'" color="red">離線</font>
<font v-else color="blue">未知</font>
</template>
</el-table-column>