開啟瀏覽器的開發者模式(f12開啟)
我們發現這個按鈕有一個自帶的左邊距10px
<el-table-column width="100" label="操作">
<template #default="scope">
<el-button type="primary" plain style="width: 50px;" @click="handelEdit(scope.row)">編輯</el-button>
<el-button type="danger" style="margin-left: 0; width: 50px;" @click="handelDelete(scope.row)">刪除</el-button>
</template>
</el-table-column>
這樣就好了