mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-09 16:58:57 +08:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
import { use } from '../utils';
|
|
import { inherit } from '../utils/functional';
|
|
|
|
const [sfc, bem] = use('goods-action');
|
|
|
|
function GoodsAction(h, props, slots, ctx) {
|
|
return (
|
|
<div class={bem()} {...inherit(ctx, true)}>
|
|
{slots.default && slots.default()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default sfc(GoodsAction);
|