element ui 里面的table怎么弹出一个框让表中数据点击出现弹框

  <el-table-column
        label="团队"
        prop="name"
        min-width="120px"
        align="center"
        >
        <template scope="scope">
          <el-button type="text" @click="showOrder(scope.row.name,scope.row.children)">{{scope.row.name}}</el-button>
        </template>
      </el-table-column>
原文地址:https://www.cnblogs.com/antyhouse/p/10216674.html