Vue2.6 坑 v-slot 在2.5版本中,slot-scope可以放在自定义标签中 <div slot-scope="scope"> {{scope.row.name}} </div> 在2.6版本中,必须放在template版本中,否则webpack编译过程中会报错 v-slot can only be used on components or <template> <div v-slot="{scope}"> <div> {{scope.row}} </div> </div>