el-table树形数据显示

<el-table v-loading="loading" :data="list" size="mini" row-key="id">
    <el-table-column label="标题" align="left" prop="title" show-overflow-tooltip />
    <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope" v-if="!scope.row.children">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-plus"
            @click="handle(scope.row)"
          >
            弹出
          </el-button>
        </template>
    </el-table-column>
</el-table>


数据模型如下:
[{
id: "1",
title: "xxx",
children: [{id: "1", title:"yyy"}]}
]