[new feature] GoodsAction: update style (#3967)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { createNamespace } from '../utils';
|
||||
import { ParentMixin } from '../mixins/relation';
|
||||
|
||||
const [createComponent, bem] = createNamespace('goods-action');
|
||||
|
||||
export default createComponent({
|
||||
mixins: [ParentMixin('vanGoodsAction')],
|
||||
|
||||
props: {
|
||||
safeAreaInsetBottom: Boolean
|
||||
},
|
||||
|
||||
render(h) {
|
||||
return (
|
||||
<div class={bem({ 'safe-area-inset-bottom': this.safeAreaInsetBottom })}>
|
||||
{this.slots()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user