如题,使用$scopedSlots
判断即可,插入的对应标签在里面会生成一个name对应的键值对,我们只需要判断$scopedSlots
中是否存在对应name值的键名即可,如下:
<template v-if="'left-option' in $slots" slot="left-option" slot-scope="scope">
{{scope}}
</template>
如题,使用$scopedSlots
判断即可,插入的对应标签在里面会生成一个name对应的键值对,我们只需要判断$scopedSlots
中是否存在对应name值的键名即可,如下:
<template v-if="'left-option' in $slots" slot="left-option" slot-scope="scope">
{{scope}}
</template>
本文标题:Vue判断slot是否有嵌入标签或者是文本内容
本文链接:https://www.haomeiwen.com/subject/nlonurtx.html
网友评论