小程序组件默认插槽只能有一个 <slot>,如果需要添加多个插槽,首先需要在组件 js 中声明

// 在组件定义的js选项中启用多slot支持
Component({
  options: {
    multipleSlots: true 
  }, 
})