@vant/weapp
Version:
轻量、可靠的小程序 UI 组件库
16 lines (15 loc) • 394 B
JavaScript
import { VantComponent } from '../common/component';
import { useChildren } from '../common/relation';
VantComponent({
relation: useChildren('goods-action-button', function () {
this.children.forEach((item) => {
item.updateStyle();
});
}),
props: {
safeAreaInsetBottom: {
type: Boolean,
value: true,
},
},
});