Behavior({
options: {
multipleSlots: true, // 在组件定义时的选项中启用多slot支持
addGlobalClass: true
},
自定义组件在使用上述设置时, 不能够使用外部样式,如app.wxss中定义的样式。将options参数放置到自定义组件配置中,如下
Component({
options: {
multipleSlots: true, // 在组件定义时的选项中启用多slot支持
addGlobalClass: true
},
则能够正常使用外部定义样式
本文网址:http://www.91bianli.com/weixinxiaochengxu/1941.html