如题,使用$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>