欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Vue2.6踩坑

程序员文章站 2022-05-17 20:05:18
...

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>
相关标签: vue2.6 v-slot