mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-28 17:29:16 +08:00
17 lines
258 B
JavaScript
17 lines
258 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('goods-action');
|
|
|
|
export default sfc(
|
|
{
|
|
render(h, context) {
|
|
return (
|
|
<div class={bem()} {...context.data}>
|
|
{context.children}
|
|
</div>
|
|
);
|
|
}
|
|
},
|
|
true
|
|
);
|