Environment element-ui 2.0.3 + vue2
nested el-tabs,el-tabs in el-dialog and use templates in the column. You can see that the page is rendered all the time in the chrome console. The nesting level is as follows:
<el-dialog>
<el-tabs>
<el-tab-pane label="">
<el-table :data="orderDetail">
<el-table-column prop="product.price" label="" :formatter="feeFormatter">
{{print("oooo")}}
</el-table-column>
<el-table-column prop="quantity" label="" align="center">
<template slot-scope="scope">
{{print("xxxx")}}
</template>
</el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>
</el-dialog>
you can see in the browser console that xxxx, is printed all the time and oooo prints normally, because the template < template slot-scope= "scope" >
< / template >
I don"t know if it"s bug, or am I using it incorrectly? Ask for expert advice