- problem description:
before element table has not fixed the rightmost action bar, click the edit button, everything is fine, and the normal effect is as follows:
:
the code is as follows:
// fixed="right"
<el-table-column label="" fixed="right">
<template slot-scope="scope">
<div align="center">
<el-button type="success" @click="updateData(scope.row)" size="mini"></el-button>
<!-- -->
<moban-edit-dialog :data="scope.row" style="display:inline" @refreshList="refreshMoban">
<template slot-scope="moban" >
<el-button type="primary" @click="moban.click" size="mini"></el-button>
</template>
</moban-edit-dialog>
</div>
</template>
</el-table-column>
how to solve this problem?