// content.vue
<template v-if="$slots.header">
<div style="backgroundColor: red">
<slot name="header">
you can see this color
</div>
</template>
// index.vue
<template v-if="false" #header>
<view>
Hello There
</view>
</template>
H5端正确渲染,插槽正确消除
微信小程序端,插槽依旧可见
v-if 小于 v-slot 优先级
H5端正确渲染,插槽正确消除
微信小程序端,插槽依旧可见
v-if小于v-slot优先级