card-mini/vant/dist/goods-action/index.js
2021-06-22 16:14:04 +08:00

16 lines
352 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,
},
},
});